Jump to content

Disable Ctrl-Shift-W?


You are about to reply to a thread that has been inactive for 2282 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

Go to your Firestorm install folder, then \skins\default\xui\en & open up the file called menu_viewer.xml in a text editor.
You can use Notepad++

Search the xml for "Close All Windows" to find this block - you may want to disable the "Close Window" shortcut too.

            <menu_item_call
             label="Close Window"
             name="Close Window"
             shortcut="control|W">
                <menu_item_call.on_click
                 function="File.CloseWindow" />
                <menu_item_call.on_enable
                 function="File.EnableCloseWindow" />
            </menu_item_call>
            <menu_item_call
             label="Close All Windows"
             name="Close All Windows"
             shortcut="control|shift|W">
                <menu_item_call.on_click
                 function="File.CloseAllWindows" />
                <menu_item_call.on_enable
                 function="File.EnableCloseAllWindows" />
            </menu_item_call>


 

  • Like 1
Link to comment
Share on other sites

  • 3 weeks later...
You are about to reply to a thread that has been inactive for 2282 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...