Jump to content

[BUG+FIX] The commands toolbar works with no command selected


Recommended Posts

Cause

The HandleCommandsSelectionMenu function doesn't check whether the command textbox is disabled before inserting the command text.

Fix

In configwizard.js below the line containing

whatfunc="HandleCommandsSelectionMenu()";

add


if (document.getElementById("cmd1").disabled)
Alert("",getText(txtMustAddCommand),"",3,-1,0,0);;

In lang_en.js below the line containing

txtDeleteCommandConfirm[lang]	= ['Are you sure you want to delete this command?'];

add


txtMustAddCommand[lang] = ['You must add a command entry through the \'Add\' button before being able to perform this operation.'];

In globals_lang.js below the line containing

var txtDeleteCommandConfirm=[];

add


var txtMustAddCommand=[];

Edited by Francesco
Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...