Author Topic: Disable plugin in certain layout.  (Read 657 times)

Vaz

  • Jr. Member
  • **
  • Posts: 11
    • View Profile
Disable plugin in certain layout.
« on: September 04, 2023, 12:35:35 PM »
Hi!
I don't know what time this message will be read, but I still wish you all a good day, good afternoon or good night!

If anyone can help me, I would like to disable the UtilityMenu plugin in a layout I developed called ATARI.

In this layout I used a script that disables the button to display the Filters listing. Below ...

Code: [Select]

function on_signal( sig )
{
switch ( sig )
{
case "filters_menu":
fe.signal( "" );
return true;

}
return false;
}
fe.add_signal_handler(this, "on_signal");



Is there something that does the same to disable the UtilityMenu plugin in this layout I created?

Thanks for everyone's goodwill.