Display Querybox when Using Width slider.

This commit is contained in:
DB p 2021-10-22 14:39:26 +09:00
parent 5be44b68ea
commit 674d6154a2

View file

@ -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