summaryrefslogtreecommitdiff
path: root/gtk2_ardour/video_monitor.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-07-22 00:39:58 +0200
committerRobin Gareus <robin@gareus.org>2014-07-25 12:59:40 +0200
commit8d2c28043883ae4d456f41d8e3635acef5ecdb98 (patch)
tree5bf1895b7a4406c57c8aca520058f214606de213 /gtk2_ardour/video_monitor.cc
parent96171ebe838137814e729e36ad904a307df55f4d (diff)
update video-monitor override flags
(new OSX/openGL menu bar in upcoming xjadeo 0.8)
Diffstat (limited to 'gtk2_ardour/video_monitor.cc')
-rw-r--r--gtk2_ardour/video_monitor.cc18
1 files changed, 10 insertions, 8 deletions
diff --git a/gtk2_ardour/video_monitor.cc b/gtk2_ardour/video_monitor.cc
index fe91554158..c48999c3cd 100644
--- a/gtk2_ardour/video_monitor.cc
+++ b/gtk2_ardour/video_monitor.cc
@@ -136,15 +136,17 @@ VideoMonitor::open (std::string filename)
process->write_to_stdin("window ontop on\n");
process->write_to_stdin("set seekmode 1\n");
/* override bitwise flags -- see xjadeo.h
- * 0x01 : ignore 'q', ESC / quite
- * 0x02 : ignore "window closed by WM" / quit
- * 0x04 : (osx only) menu-exit / quit
- * 0x08 : ignore mouse-button 1 -- resize
- * 0x10 : no A/V offset
- * 0x20 : don't use jack-session
- * 0x40 : no jack-transport control play/pause/rewind
+ * 0x0001 : ignore 'q', ESC / quit
+ * 0x0002 : ignore "window closed by WM" / quit
+ * 0x0004 : (osx only) menu-exit / quit
+ * 0x0008 : ignore mouse-button 1 -- resize
+ * 0x0010 : no A/V offset control with keyboard
+ * 0x0020 : don't use jack-session
+ * 0x0040 : disable jack transport control
+ * 0x0080 : disallow sync source change (OSX menu)
+ * 0x0100 : disallow file open (OSX menu, X11 DnD)
*/
- process->write_to_stdin("set override 120\n");
+ process->write_to_stdin("set override 504\n");
process->write_to_stdin("notify keyboard\n");
process->write_to_stdin("notify settings\n");
process->write_to_stdin("window letterbox on\n");