Skip to content

Commit

Permalink
Fixes #517 by removing e.Handled = false in OnDropDownPopupMouseDown
Browse files Browse the repository at this point in the history
  • Loading branch information
batzen committed Feb 8, 2018
1 parent 06bdebf commit 5d7f34b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- [#511](../../issues/511) - Binding on RibbonWindow.Icon not working
- [#512](../../issues/512) - Ideal text color should match the colors in the ribbon
- [#513](../../issues/513) - Hovering causes flickering of ribbon backstage menu items
- [#517](../../issues/517) - Fluent 6.0: buttons inside drop downs don't seem to work when using ClosePopupOnMouseDown

- ### Enhancements
- [#509](../../issues/509) - Checked mark + Icon image at Menuitem
Expand Down
2 changes: 0 additions & 2 deletions Fluent.Ribbon/Controls/DropDownButton.cs
Original file line number Diff line number Diff line change
Expand Up @@ -519,8 +519,6 @@ private void OnDropDownPopupMouseDown(object sender, RoutedEventArgs e)
&& this.resizeBothThumb.IsMouseOver == false
&& this.resizeVerticalThumb.IsMouseOver == false)
{
e.Handled = false;

// Note: get outside thread to prevent exceptions (it's a dependency property after all)
var timespan = this.ClosePopupOnMouseDownDelay;

Expand Down

0 comments on commit 5d7f34b

Please sign in to comment.