Added zoom to editor. Fixed crashes. Added sane tabbing to new map dialog. Added selection on tab - new map dialog

This commit is contained in:
Caleb Anderson
2010-09-09 02:50:03 -05:00
committed by Chris Forbes
parent ed5a3338fe
commit b284e82aa7
3 changed files with 130 additions and 41 deletions

5
OpenRA.Editor/NewMapDialog.cs Normal file → Executable file
View File

@@ -18,5 +18,10 @@ namespace OpenRA.Editor
{
InitializeComponent();
}
private void SelectText(object sender, System.EventArgs e)
{
(sender as NumericUpDown).Select(0, (sender as NumericUpDown).ToString().Length);
}
}
}