mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
Fix wrong number for Taskbar item 10
This commit is contained in:
@@ -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,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user