mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Support changing ShowAtTopmost
This commit is contained in:
parent
8aa36f38c8
commit
587ab629aa
1 changed files with 5 additions and 0 deletions
|
|
@ -84,6 +84,8 @@ namespace Flow.Launcher
|
|||
_viewModel = Ioc.Default.GetRequiredService<MainViewModel>();
|
||||
DataContext = _viewModel;
|
||||
|
||||
Topmost = _settings.ShowAtTopmost;
|
||||
|
||||
InitializeComponent();
|
||||
UpdatePosition();
|
||||
|
||||
|
|
@ -283,6 +285,9 @@ namespace Flow.Launcher
|
|||
_viewModel.QueryResults();
|
||||
}
|
||||
break;
|
||||
case nameof(Settings.ShowAtTopmost):
|
||||
Topmost = _settings.ShowAtTopmost;
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue