Fixes menubar glitch when mouse is at y==0 (#1060)

This commit is contained in:
Matthias Melcher 2024-09-04 15:23:16 +02:00
parent b595db30d4
commit 2b1f15084d
1 changed files with 8 additions and 2 deletions

View File

@ -896,8 +896,14 @@ int menuwindow::handle_part1(int e) {
return 0;
}
}
if (my == 0 && item > 0) setitem(mymenu, item - 1);
else setitem(mymenu, item);
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);
}
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