Skip to content

Commit ad81a3c

Browse files
committed
Fix hotkey string issue
1 parent 0077856 commit ad81a3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Infrastructure/Hotkey/RegisteredHotkeyData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ public void SetHotkey(HotkeyModel hotkey)
245245
/// <inheritdoc />
246246
public override string ToString()
247247
{
248-
return Hotkey.IsEmpty ? $"{RegisteredType} - {Hotkey}" : $"{RegisteredType} - None";
248+
return Hotkey.IsEmpty ? $"{RegisteredType} - None" : $"{RegisteredType} - {Hotkey}";
249249
}
250250
}
251251

0 commit comments

Comments
 (0)