summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/ardour_ui.cc8
-rw-r--r--gtk2_ardour/session_dialog.cc3
-rw-r--r--gtk2_ardour/splash.cc2
-rw-r--r--gtk2_ardour/startup.cc1
4 files changed, 2 insertions, 12 deletions
diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc
index 9a83ec0c9b..597bb5df87 100644
--- a/gtk2_ardour/ardour_ui.cc
+++ b/gtk2_ardour/ardour_ui.cc
@@ -489,7 +489,6 @@ the audio backend and save the session."), PROGRAM_NAME);
MessageDialog msg (*editor, msgstr);
pop_back_splash (msg);
- msg.set_keep_above (true);
msg.run ();
if (free_reason) {
@@ -1119,7 +1118,6 @@ ARDOUR_UI::ask_about_saving_session (const vector<string>& actions)
prompt_label.show();
dimage->show();
window.show();
- window.set_keep_above (true);
window.present ();
ResponseType r = (ResponseType) window.run();
@@ -2609,7 +2607,7 @@ ARDOUR_UI::ask_about_loading_existing_session (const std::string& session_path)
msg.set_name (X_("OpenExistingDialog"));
msg.set_title (_("Open Existing Session"));
msg.set_wmclass (X_("existing_session"), PROGRAM_NAME);
- msg.set_position (Gtk::WIN_POS_MOUSE);
+ msg.set_position (Gtk::WIN_POS_CENTER);
pop_back_splash (msg);
switch (msg.run()) {
@@ -3003,7 +3001,6 @@ ARDOUR_UI::load_session (const std::string& path, const std::string& snap_name,
Gtk::MESSAGE_INFO,
BUTTONS_OK);
- msg.set_keep_above (true);
msg.set_title (_("Loading Error"));
msg.set_position (Gtk::WIN_POS_CENTER);
pop_back_splash (msg);
@@ -3027,8 +3024,7 @@ ARDOUR_UI::load_session (const std::string& path, const std::string& snap_name,
true,
Gtk::MESSAGE_INFO,
BUTTONS_OK);
-
- msg.set_keep_above (true);
+
msg.set_title (_("Read-only Session"));
msg.set_position (Gtk::WIN_POS_CENTER);
pop_back_splash (msg);
diff --git a/gtk2_ardour/session_dialog.cc b/gtk2_ardour/session_dialog.cc
index ed369d346e..80ef55322d 100644
--- a/gtk2_ardour/session_dialog.cc
+++ b/gtk2_ardour/session_dialog.cc
@@ -69,9 +69,6 @@ SessionDialog::SessionDialog (bool require_new, const std::string& session_name,
, _master_bus_channel_count_adj (2, 0, 100, 1, 10, 0)
, _existing_session_chooser_used (false)
{
-#ifndef PLATFORM_WINDOWS
- set_keep_above (true);
-#endif
set_position (WIN_POS_CENTER);
get_vbox()->set_spacing (6);
diff --git a/gtk2_ardour/splash.cc b/gtk2_ardour/splash.cc
index da22016f07..ff9e133eb0 100644
--- a/gtk2_ardour/splash.cc
+++ b/gtk2_ardour/splash.cc
@@ -129,8 +129,6 @@ Splash::pop_front ()
if (get_window()) {
show ();
}
-#else
- set_keep_above (true);
#endif
}
diff --git a/gtk2_ardour/startup.cc b/gtk2_ardour/startup.cc
index 54d988ec03..921a34c64b 100644
--- a/gtk2_ardour/startup.cc
+++ b/gtk2_ardour/startup.cc
@@ -73,7 +73,6 @@ ArdourStartup::ArdourStartup ()
, monitoring_page_index (-1)
, final_page_index (-1)
{
- set_keep_above (true);
set_position (WIN_POS_CENTER);
set_border_width (12);