summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_info_box.h
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2017-06-17 04:08:56 +1000
committernick_m <mainsbridge@gmail.com>2017-07-22 02:15:20 +1000
commitfb761a6fa7719fbd532dec08564142336316d92c (patch)
tree9d2218584a5befa4870f431210a1d1fc31fdda21 /gtk2_ardour/time_info_box.h
parentd1932b23b3811f734d282e92b691473e446399b2 (diff)
Rework time info box updates on region selection change
Should provide better performance as we now only listen for changes in the selected regions. Testing every changed region to see if its in the selection was not working very well under some circumstances.
Diffstat (limited to 'gtk2_ardour/time_info_box.h')
-rw-r--r--gtk2_ardour/time_info_box.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/time_info_box.h b/gtk2_ardour/time_info_box.h
index cf06b404c9..0ffd00a2be 100644
--- a/gtk2_ardour/time_info_box.h
+++ b/gtk2_ardour/time_info_box.h
@@ -70,13 +70,13 @@ private:
PBD::ScopedConnectionList region_property_connections;
void selection_changed ();
+ void region_selection_changed ();
void sync_selection_mode (AudioClock*);
void sync_punch_mode (AudioClock*);
bool clock_button_release_event (GdkEventButton* ev, AudioClock* src);
void track_mouse_mode ();
- void region_property_change (boost::shared_ptr<ARDOUR::Region> r, const PBD::PropertyChange& what_changed);
};
#endif /* __time_info_box_h__ */