Skip to content

Commit 2b17c42

Browse files
authored
Merge pull request #5369 from jonathan-rizk/ExcludeDisabledHotkeys
Hotkey Mod Label: Exclude Disabled Hotkeys
2 parents 39c471c + 4cb31c1 commit 2b17c42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rubberduck.Core/UI/Settings/GeneralSettingsViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public bool ShouldDisplayHotkeyModificationLabel
112112
{
113113
get
114114
{
115-
return _hotkeys.Any(s => !s.IsValid);
115+
return _hotkeys.Any(s => !s.IsValid && s.IsEnabled);
116116
}
117117
}
118118

0 commit comments

Comments
 (0)