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 c033ac9 commit 0edaf85Copy full SHA for 0edaf85
MaterialDesignThemes.Wpf/PopupBox.cs
@@ -659,6 +659,9 @@ private static void OnLostMouseCapture(object sender, MouseEventArgs e)
659
{
660
if (popupBox.StaysOpen && popupBox.IsPopupOpen)
661
662
+ // Fix for ComboBox scrolling
663
+ if (GetCapture() != IntPtr.Zero) return;
664
+
665
// Take capture back because click happend outside of control
666
Mouse.Capture(popupBox, CaptureMode.SubTree);
667
e.Handled = true;
0 commit comments