mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Display Querybox when Using Width slider.
This commit is contained in:
parent
5be44b68ea
commit
674d6154a2
1 changed files with 5 additions and 1 deletions
|
|
@ -309,7 +309,11 @@ namespace Flow.Launcher.ViewModel
|
|||
public double WindowWidthSize
|
||||
{
|
||||
get => Settings.WindowSize;
|
||||
set => Settings.WindowSize = value;
|
||||
set
|
||||
{
|
||||
Settings.WindowSize = value;
|
||||
Application.Current.MainWindow.Visibility = Visibility.Visible;
|
||||
}
|
||||
}
|
||||
|
||||
public bool UseGlyphIcons
|
||||
|
|
|
|||
Loading…
Reference in a new issue