Skip to content

Commit

Permalink
Fix: AirSpace issue in Flyout (#2582)
Browse files Browse the repository at this point in the history
* Fix: Close #2579

* Fix: AirSpace issue in Flyout
  • Loading branch information
BornToBeRoot authored Dec 17, 2023
1 parent 7341a83 commit 805a5b1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Source/NETworkManager/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1149,6 +1149,8 @@ public string RunCommandSearch

private void OpenRunAction()
{
ConfigurationManager.OnDialogOpen();

FlyoutRunCommand.IsOpen = true;
}

Expand Down Expand Up @@ -1233,9 +1235,13 @@ private void RunCommandFlyoutClose()
{
if (!FlyoutRunCommand.IsOpen)
return;

FlyoutRunCommand.AreAnimationsEnabled = false;
FlyoutRunCommand.IsOpen = false;

ConfigurationManager.OnDialogClose();

// Clear the search
RunCommandSearch = string.Empty;
}
#endregion
Expand Down

0 comments on commit 805a5b1

Please sign in to comment.