Make the automation dialog resizable

Originally committed to SVN as r5668.
This commit is contained in:
Thomas Goyne 2011-09-28 21:38:18 +00:00
parent 6a49b5392d
commit 0f605b358f
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@
using std::tr1::placeholders::_1;
DialogAutomation::DialogAutomation(agi::Context *c)
: wxDialog(c->parent, -1, _("Automation Manager"))
: wxDialog(c->parent, -1, _("Automation Manager"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
, context(c)
, local_manager(c->local_scripts)
, global_manager(wxGetApp().global_scripts)