Skip to content

Commit f8d82f3

Browse files
committed
Change default query font size
Change showPlaceholder to true from false
1 parent 7910ab3 commit f8d82f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Flow.Launcher.Infrastructure/UserSettings/Settings.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public string Theme
8282
/* Appearance Settings. It should be separated from the setting later.*/
8383
public double WindowHeightSize { get; set; } = 42;
8484
public double ItemHeightSize { get; set; } = 58;
85-
public double QueryBoxFontSize { get; set; } = 20;
85+
public double QueryBoxFontSize { get; set; } = 18;
8686
public double ResultItemFontSize { get; set; } = 16;
8787
public double ResultSubItemFontSize { get; set; } = 13;
8888
public string QueryBoxFont { get; set; } = FontFamily.GenericSansSerif.Name;
@@ -114,7 +114,7 @@ public string Theme
114114
public double? SettingWindowLeft { get; set; } = null;
115115
public WindowState SettingWindowState { get; set; } = WindowState.Normal;
116116

117-
bool _showPlaceholder { get; set; } = false;
117+
bool _showPlaceholder { get; set; } = true;
118118
public bool ShowPlaceholder
119119
{
120120
get => _showPlaceholder;

0 commit comments

Comments
 (0)