Skip to content

Commit 674d615

Browse files
committed
Display Querybox when Using Width slider.
1 parent 5be44b6 commit 674d615

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Flow.Launcher/ViewModel/SettingWindowViewModel.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,11 @@ public bool DropShadowEffect
309309
public double WindowWidthSize
310310
{
311311
get => Settings.WindowSize;
312-
set => Settings.WindowSize = value;
312+
set
313+
{
314+
Settings.WindowSize = value;
315+
Application.Current.MainWindow.Visibility = Visibility.Visible;
316+
}
313317
}
314318

315319
public bool UseGlyphIcons

0 commit comments

Comments
 (0)