-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Description
Some components that are disabled don't show this without theming. An example being knobs, see the tension knob in the Automation Editor. It's only enabled with the cubic hermite progression and disabled for the other progressions but there is no visual indication that it's disabled other than that it's immobile.
lmms/src/gui/editors/AutomationEditor.cpp
Line 2506 in 386c471
m_tensionKnob->setEnabled(false); |
I think all changes needed may be in style.css
. We have some theming of disabled components already. See the Edit->Redo
menu entry when there are no undone actions.
lmms/data/themes/default/style.css
Line 109 in 386c471
QMenu::item:disabled { |
@LMMS/artwork-team
Edit: New commit with disabled knobs (#4378)...
lmms/src/gui/widgets/EffectView.cpp
Line 78 in a3ede05
m_autoQuit->setEnabled( isEnabled && !effect()->m_autoQuitDisabled ); |