mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change default query font size
Change showPlaceholder to true from false
This commit is contained in:
parent
7910ab34e8
commit
f8d82f3f9b
1 changed files with 2 additions and 2 deletions
|
|
@ -82,7 +82,7 @@ namespace Flow.Launcher.Infrastructure.UserSettings
|
||||||
/* Appearance Settings. It should be separated from the setting later.*/
|
/* Appearance Settings. It should be separated from the setting later.*/
|
||||||
public double WindowHeightSize { get; set; } = 42;
|
public double WindowHeightSize { get; set; } = 42;
|
||||||
public double ItemHeightSize { get; set; } = 58;
|
public double ItemHeightSize { get; set; } = 58;
|
||||||
public double QueryBoxFontSize { get; set; } = 20;
|
public double QueryBoxFontSize { get; set; } = 18;
|
||||||
public double ResultItemFontSize { get; set; } = 16;
|
public double ResultItemFontSize { get; set; } = 16;
|
||||||
public double ResultSubItemFontSize { get; set; } = 13;
|
public double ResultSubItemFontSize { get; set; } = 13;
|
||||||
public string QueryBoxFont { get; set; } = FontFamily.GenericSansSerif.Name;
|
public string QueryBoxFont { get; set; } = FontFamily.GenericSansSerif.Name;
|
||||||
|
|
@ -114,7 +114,7 @@ namespace Flow.Launcher.Infrastructure.UserSettings
|
||||||
public double? SettingWindowLeft { get; set; } = null;
|
public double? SettingWindowLeft { get; set; } = null;
|
||||||
public WindowState SettingWindowState { get; set; } = WindowState.Normal;
|
public WindowState SettingWindowState { get; set; } = WindowState.Normal;
|
||||||
|
|
||||||
bool _showPlaceholder { get; set; } = false;
|
bool _showPlaceholder { get; set; } = true;
|
||||||
public bool ShowPlaceholder
|
public bool ShowPlaceholder
|
||||||
{
|
{
|
||||||
get => _showPlaceholder;
|
get => _showPlaceholder;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue