Draggable EQ Right Click Menu Options
-
Does anyone know if its possible to edit the right-click options in the draggable filter panel / parametriq eq?
I'm digging through the source files but can't see a reference to it.
I want to remove the Spectrum Analyser option as I already have one in the project.
-
@DanH It's in EqComponent.cpp line 556
-
@ustk I had just loaded that file when I read this message thank you!
-
Does anybody know how to change Popup BG colour from Source Code?
Like this ? -
@Tania-Ghosh It might be in
HI_LookAndFeels.h
at line 196 but I'm not sure, you need to test -
@ustk OK Sir, I'll test and let you know. :) Thank you.
-
@ustk Yes... It worked. :) (y)
-
-
@ustk sir I have one last request (till now ).. How can I change it's color too?
-
@Tania-Ghosh You don't need to tweak source code for this.... If you customize Look & feel e.g
const var laf = Engine.createGlobalScriptLookAndFeel(); laf.registerFunction("drawPopupMenuBackground", function(g, obj) { g.fillAll(0xFF222222); });
It will override the default one.
-
@ustk So yes, EqComponent.cpp:
Comment out line 556 and then 614 and 615 as well
-
@Rudra-Ghosh Ok.. Got it.. Thank you. :)