mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
RecorderUI: keep track of playlist changes
This fixes a bug that the recorder display does not correctly redraw when using a new or different playlist.
This commit is contained in:
parent
d60a6a890d
commit
6027e49e58
2 changed files with 11 additions and 1 deletions
|
|
@ -183,6 +183,7 @@ private:
|
|||
private:
|
||||
void render_region (boost::shared_ptr<ARDOUR::Region>, Cairo::RefPtr<Cairo::Context> const&, double);
|
||||
void playlist_changed ();
|
||||
void playlist_contents_changed ();
|
||||
void property_changed (PBD::PropertyChange const&);
|
||||
void maybe_setup_rec_box ();
|
||||
void update_rec_box ();
|
||||
|
|
@ -201,6 +202,7 @@ private:
|
|||
bool _rec_active;
|
||||
|
||||
std::vector<RecInfo> _rec_rects;
|
||||
PBD::ScopedConnection _playlist_connections;
|
||||
PBD::ScopedConnectionList _connections;
|
||||
sigc::connection _screen_update_connection;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue