mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix hotkey string issue
This commit is contained in:
parent
00778560f8
commit
ad81a3c091
1 changed files with 1 additions and 1 deletions
|
|
@ -245,7 +245,7 @@ public record RegisteredHotkeyData
|
|||
/// <inheritdoc />
|
||||
public override string ToString()
|
||||
{
|
||||
return Hotkey.IsEmpty ? $"{RegisteredType} - {Hotkey}" : $"{RegisteredType} - None";
|
||||
return Hotkey.IsEmpty ? $"{RegisteredType} - None" : $"{RegisteredType} - {Hotkey}";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue