summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2006-04-28 06:10:27 +0000
committerTim Mayberry <mojofunk@gmail.com>2006-04-28 06:10:27 +0000
commit3129b822b041b423485a4f2f54aed0963c886bdd (patch)
treec04e22f647163fa1f0529d7bf095de387b3747ed
parent982d639d44f23ac46aa19ddb08055fa8cec9b0fd (diff)
make new session dialog modal.
git-svn-id: svn://localhost/trunk/ardour2@487 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/ardour_ui.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc
index 1b05d746b4..169b150d70 100644
--- a/gtk2_ardour/ardour_ui.cc
+++ b/gtk2_ardour/ardour_ui.cc
@@ -1704,7 +1704,7 @@ void
ARDOUR_UI::new_session (bool startup, std::string predetermined_path)
{
m_new_session_dialog->show_all();
- m_new_session_dialog->set_transient_for(*editor);
+ m_new_session_dialog->set_modal(true);
m_new_session_dialog->set_name(predetermined_path);
int response = Gtk::RESPONSE_CANCEL;