Added, action argument inputs: added "<" and ">" prefixes. These decrement/increment given value by selected map element number.

Changed, action argument inputs: "+++" and "---" prefixes now do the same thing as they do in other numeric controls (e.g. add/subtract given value multiplied by selected map element number to/from initial value).
Changed, action argument inputs: changed value colors, added tooltips.
This commit is contained in:
MaxED 2016-08-29 11:32:31 +00:00
parent ea57d45eb3
commit fbca0922f4
6 changed files with 50 additions and 27 deletions

View file

@ -226,7 +226,7 @@ namespace CodeImp.DoomBuilder.Controls
string textpart = this.Text;
// Strip prefixes
textpart = textpart.Replace("+", "").Replace("-", "").Replace("*", "").Replace("/", ""); //mxd
textpart = textpart.TrimStart('+', '-', '*', '/'); //mxd
// Any numbers left?
if(textpart.Length > 0)