We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0a85ba commit a440451Copy full SHA for a440451
src/main/widgets/compound/ListBox.cpp
@@ -942,6 +942,9 @@ namespace lsp
942
943
status_t ListBox::on_mouse_out(const ws::event_t *e)
944
{
945
+ nBMask = 0;
946
+ nXFlags &= ~(F_SUBMIT | F_CHANGED);
947
+
948
if (pHoverItem != NULL)
949
950
pHoverItem = NULL;
src/main/widgets/containers/Window.cpp
@@ -707,6 +707,7 @@ namespace lsp
707
pWindow->hide();
708
}
709
710
+ discard_widget(pFocused);
711
WidgetContainer::hide_widget();
712
713
@@ -1530,6 +1531,7 @@ namespace lsp
1530
1531
ev.nType = ws::UIE_MOUSE_OUT;
1532
ev.nLeft = hMouse.nLeft;
1533
ev.nTop = hMouse.nTop;
1534
+ hMouse.nState = 0;
1535
hMouse.pWidget = NULL;
1536
1537
old->handle_event(&ev);
0 commit comments