mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Adjust Default Value
This commit is contained in:
parent
cedf0c6c1e
commit
5a0f4ac459
2 changed files with 7 additions and 6 deletions
|
|
@ -58,9 +58,9 @@ namespace Flow.Launcher.Infrastructure.UserSettings
|
|||
public bool UseDropShadowEffect { get; set; } = false;
|
||||
|
||||
/* Appearance Settings. It should be separated from the setting later.*/
|
||||
public double WindowHeightSize { get; set; } = 40;
|
||||
public double WindowHeightSize { get; set; } = 42;
|
||||
public double ItemHeightSize { get; set; } = 58;
|
||||
public double QueryBoxFontSize { get; set; } = 18;
|
||||
public double QueryBoxFontSize { get; set; } = 20;
|
||||
public double ResultItemFontSize { get; set; } = 16;
|
||||
public double ResultSubItemFontSize { get; set; } = 13;
|
||||
public string QueryBoxFont { get; set; } = FontFamily.GenericSansSerif.Name;
|
||||
|
|
|
|||
|
|
@ -1,9 +1,10 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Windows;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using CommunityToolkit.Mvvm.Input;
|
||||
|
|
@ -483,15 +484,15 @@ public partial class SettingsPaneThemeViewModel : BaseModel
|
|||
Settings.ResultFontStyle = "Normal";
|
||||
Settings.ResultFontWeight = "Normal";
|
||||
Settings.ResultFontStretch = "Normal";
|
||||
Settings.ResultItemFontSize = 18;
|
||||
Settings.ResultItemFontSize = 16;
|
||||
|
||||
Settings.ResultSubFont = "Segoe UI";
|
||||
Settings.ResultSubFontStyle = "Normal";
|
||||
Settings.ResultSubFontWeight = "Normal";
|
||||
Settings.ResultSubFontStretch = "Normal";
|
||||
Settings.ResultSubItemFontSize = 14;
|
||||
Settings.ResultSubItemFontSize = 13;
|
||||
|
||||
Settings.ItemHeightSize = 52;
|
||||
Settings.ItemHeightSize = 58;
|
||||
Settings.WindowHeightSize = 42;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue