Skip to content

Commit 4cb31c1

Browse files
exclude disabled hotkeys when determining which hotkeys should display the hotkey mod. label.
1 parent 231bac5 commit 4cb31c1

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)