From 0f605b358feb67a999e8bab9fec9c3186cba9173 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Wed, 28 Sep 2011 21:38:18 +0000 Subject: [PATCH] Make the automation dialog resizable Originally committed to SVN as r5668. --- aegisub/src/dialog_automation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/dialog_automation.cpp b/aegisub/src/dialog_automation.cpp index 8c78ae780..8fd8bcf57 100644 --- a/aegisub/src/dialog_automation.cpp +++ b/aegisub/src/dialog_automation.cpp @@ -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)