summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui_options.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-01-15 22:01:30 +0100
committerRobin Gareus <robin@gareus.org>2020-01-15 22:08:42 +0100
commita62df6076007398074f21e2581f5fa21f4f73e00 (patch)
treea5fd129b096e8773d25a7559e10836fa76148987 /gtk2_ardour/ardour_ui_options.cc
parentef636d02741bda53c533747f10b88f7ab667768c (diff)
Replace some Gtk:MessageDialog with Ardour's variant
This fixes some issues with stuck splash screen early on.
Diffstat (limited to 'gtk2_ardour/ardour_ui_options.cc')
-rw-r--r--gtk2_ardour/ardour_ui_options.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk2_ardour/ardour_ui_options.cc b/gtk2_ardour/ardour_ui_options.cc
index 4998f76303..f18e09377a 100644
--- a/gtk2_ardour/ardour_ui_options.cc
+++ b/gtk2_ardour/ardour_ui_options.cc
@@ -40,6 +40,7 @@
#include "gtkmm2ext/utils.h"
#include "waveview/wave_view.h"
+#include "ardour_message.h"
#include "audio_clock.h"
#include "ardour_ui.h"
#include "actions.h"
@@ -60,7 +61,7 @@ ARDOUR_UI::toggle_external_sync()
{
if (_session) {
if (_session->config.get_video_pullup() != 0.0f && (TransportMasterManager::instance().current()->type() == Engine)) {
- MessageDialog msg (_("It is not possible to use JACK as the the sync source\n when the pull up/down setting is non-zero."));
+ ArdourMessageDialog msg (_("It is not possible to use JACK as the the sync source\n when the pull up/down setting is non-zero."));
msg.run ();
return;
}