make feature lines (rhythm ferret etc) scale with zoom; hide them whenever RF hides
[ardour.git] / libs / pbd / misc.c
1 #include <pbd/misc.h>
2
3 #ifdef GTKOSX
4 #include <AppKit/AppKit.h>
5 #endif
6
7 void
8 disable_screen_updates ()
9 {
10 #ifdef GTKOSX
11         // NSDisableScreenUpdates ();
12 #endif
13 }
14
15 void
16 enable_screen_updates ()
17 {
18 #ifdef GTKOSX
19         // NSEnableScreenUpdates();
20 #endif
21 }