diff options
| author | Matthias Melcher <github@matthiasm.com> | 2024-09-04 16:06:29 +0200 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2024-09-04 16:06:29 +0200 |
| commit | d8eb45531e1d1cb49f79b89075a2eaf6ad477560 (patch) | |
| tree | eaba7479d08aec3193db446e30c1cb092c5f5705 | |
| parent | 2b1f15084d32fd94b8acf964b141ab882c6c5867 (diff) | |
Fixes menu scrolling for secondary screens (#1060)
- huge menus would scroll down when the mouse pointer hit
position 0, but for some secondary screens, the top edge is
not at y==0, so now we check for a range a the top border of
the working space of the screen showing the menu.
| -rw-r--r-- | src/Fl_Menu.cxx | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/src/Fl_Menu.cxx b/src/Fl_Menu.cxx index b63f7d417..effaafd9c 100644 --- a/src/Fl_Menu.cxx +++ b/src/Fl_Menu.cxx @@ -493,8 +493,11 @@ void menuwindow::autoscroll(int n) { int xx, ww; Fl_Window_Driver::driver(this)->menu_window_area(xx, scr_y, ww, scr_h); - if (Y <= scr_y) Y = scr_y-Y+10; - else { + if (n==0 && Y <= scr_y + itemheight) { + Y = scr_y - Y + 10; + } else if (Y <= scr_y + itemheight) { + Y = scr_y - Y + 10 + itemheight; + } else { Y = Y+itemheight-scr_h-scr_y; if (Y < 0) return; Y = -Y-10; @@ -896,14 +899,7 @@ int menuwindow::handle_part1(int e) { return 0; } } - if ( (!pp.menubar) && (my == 0) && (item > 0) ) { - // Allow vertical scrolling when the mouse reaches the top of the screen. - // TODO: the top of many screens is not 0 (see Fl::screen_work_area - // and Fl::screen_xywh) - setitem(mymenu, item - 1); - } else { - setitem(mymenu, item); - } + setitem(mymenu, item); if (e == FL_PUSH) { if (pp.current_item && pp.current_item->submenu() // this is a menu title && item != pp.p[mymenu]->selected // and it is not already on |
