Fix #4396: "5.4-RC1 stuck on release notes panel"

Now the alert windows pops after closing the splash window
This commit is contained in:
Hombre
2018-02-18 01:13:49 +01:00
parent fc751a0cce
commit cb0798502b
4 changed files with 22 additions and 11 deletions

View File

@@ -347,17 +347,6 @@ RTWindow *create_rt_window()
//gdk_threads_enter ();
RTWindow *rtWindow = new RTWindow();
// alerting users if the default raw and image profiles are missing
if (options.is_defProfRawMissing()) {
Gtk::MessageDialog msgd (Glib::ustring::compose (M ("OPTIONS_DEFRAW_MISSING"), options.defProfRaw), true, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
msgd.run ();
}
if (options.is_defProfImgMissing()) {
Gtk::MessageDialog msgd (Glib::ustring::compose (M ("OPTIONS_DEFIMG_MISSING"), options.defProfImg), true, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
msgd.run ();
}
return rtWindow;
}