Qt: Fix disabled menu items in MacOS native theme

This commit is contained in:
Stenzek
2025-10-14 00:06:46 +10:00
parent 3c632c896d
commit 8f0c9dd171

View File

@@ -624,6 +624,9 @@ QMenu::item:selected {
background-color: #2b4ab3;
color: #ffffff;
}
QMenu::item:disabled {
color: #585858;
}
QMenu::icon:checked {
background: #414141;
border: 1px solid #777;
@@ -659,6 +662,9 @@ QMenu::icon:checked {
background: #414141;
border: 1px solid #777;
}
QMenu::item:disabled {
color: #909090;
}
QMenu::separator {
background: #a9a9a9;
}