diff --git a/src/modules/ShortcutGuide/ShortcutGuide.Ui/ShortcutGuideXAML/TaskbarWindow.xaml.cs b/src/modules/ShortcutGuide/ShortcutGuide.Ui/ShortcutGuideXAML/TaskbarWindow.xaml.cs index 402fae5aaa..003d116aab 100644 --- a/src/modules/ShortcutGuide/ShortcutGuide.Ui/ShortcutGuideXAML/TaskbarWindow.xaml.cs +++ b/src/modules/ShortcutGuide/ShortcutGuide.Ui/ShortcutGuideXAML/TaskbarWindow.xaml.cs @@ -42,7 +42,7 @@ namespace ShortcutGuide.ShortcutGuideXAML { TaskbarIndicator indicator = new() { - Label = b.Keynum.ToString(CultureInfo.InvariantCulture), + Label = b.Keynum >= 10 ? "0" : b.Keynum.ToString(CultureInfo.InvariantCulture), Height = b.Height / DPI, Width = b.Width / DPI, };