From c190870b504db5bc1e588cc826e549e16e554c96 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 10 Jun 2013 17:56:53 +0200 Subject: [PATCH] vtl: disable video-monitor settings override (unused for now) --- gtk2_ardour/video_timeline.cc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gtk2_ardour/video_timeline.cc b/gtk2_ardour/video_timeline.cc index 176752f867..9aec6800d4 100644 --- a/gtk2_ardour/video_timeline.cc +++ b/gtk2_ardour/video_timeline.cc @@ -708,6 +708,13 @@ VideoTimeLine::open_video_monitor() { return; } +#if 0 + /* unused for now. + * the idea is to selective ignore certain monitor window + * states if xjadeo is not running on the same host as ardour. + * However with the removal of the video-monitor-startup-dialogue + * (git rev 5a4d0fff0) these settings are currently not accessible. + */ int xj_settings_mask = vmonitor->restore_settings_mask(); if (_session) { /* load mask from Session */ @@ -721,6 +728,7 @@ VideoTimeLine::open_video_monitor() { } vmonitor->restore_settings_mask(xj_settings_mask); +#endif if (!vmonitor->start()) { warning << "launching xjadeo failed.." << endmsg;