summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_clock.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/audio_clock.h')
-rw-r--r--gtk2_ardour/audio_clock.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk2_ardour/audio_clock.h b/gtk2_ardour/audio_clock.h
index 67d137d377..38bb3f1329 100644
--- a/gtk2_ardour/audio_clock.h
+++ b/gtk2_ardour/audio_clock.h
@@ -42,7 +42,7 @@ class AudioClock : public Gtk::HBox
Off
};
- AudioClock (std::string clock_name, bool transient, std::string widget_name, bool editable, bool is_duration = false, bool with_info = false);
+ AudioClock (std::string, bool, std::string, bool, bool, bool duration = false, bool with_info = false);
Mode mode() const { return _mode; }
@@ -79,6 +79,8 @@ class AudioClock : public Gtk::HBox
bool is_transient;
bool is_duration;
bool editable;
+ /** true if this clock follows the playhead, meaning that certain operations are redundant */
+ bool _follows_playhead;
Gtk::Menu *ops_menu;