Adjust Default Value

This commit is contained in:
DB p 2024-05-25 22:22:51 +09:00
parent cedf0c6c1e
commit 5a0f4ac459
2 changed files with 7 additions and 6 deletions

View file

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

View file

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