Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
batzen committed Jan 26, 2022
2 parents a65f749 + e13ae23 commit 78741ef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog for Fluent.Ribbon

## 9.0.3

- ### Bug fixes

- [#1004](../../issues/1004) - Detach from KeyDown event to match code in Show()

## 9.0.2

- ### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion Fluent.Ribbon/Controls/Backstage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ private void RestoreParentProperties()

if (this.ownerWindow is not null)
{
this.ownerWindow.PreviewKeyDown -= this.HandleOwnerWindowKeyDown;
this.ownerWindow.KeyDown -= this.HandleOwnerWindowKeyDown;
this.ownerWindow.SizeChanged -= this.HandleOwnerWindowSizeChanged;

if (double.IsNaN(this.savedWindowMinWidth) == false
Expand Down

0 comments on commit 78741ef

Please sign in to comment.