Skip to content
Snippets Groups Projects
Commit 50d06210 authored by codeimp's avatar codeimp
Browse files

Fixed a bug in the thing/linedef argument input boxes that caused an incorrect...

Fixed a bug in the thing/linedef argument input boxes that caused an incorrect value when only increased/decreased with the up/down buttons
parent 29972eae
No related branches found
No related tags found
No related merge requests found
......@@ -144,6 +144,7 @@ namespace CodeImp.DoomBuilder.Controls
int newvalue = GetResult(0) - scrollbuttons.Value;
if(newvalue < 0) newvalue = 0;
combobox.Text = newvalue.ToString();
combobox_Validating(sender, new CancelEventArgs());
}
scrollbuttons.Value = 0;
ignorebuttonchange = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment