mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-21 21:06:03 +01:00
rename the last rename ...
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@7132 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
39e953ecb2
commit
267129c1fc
3 changed files with 4 additions and 4 deletions
|
|
@ -829,7 +829,7 @@ Editor::track_selection_changed ()
|
|||
}
|
||||
|
||||
for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
|
||||
(*i)->reflect_selected (*selection);
|
||||
(*i)->show_selection (*selection);
|
||||
}
|
||||
|
||||
ActionManager::set_sensitive (ActionManager::track_selection_sensitive_actions, !selection->tracks.empty());
|
||||
|
|
|
|||
|
|
@ -588,11 +588,11 @@ TimeAxisView::popup_size_menu (guint32 when)
|
|||
}
|
||||
|
||||
void
|
||||
TimeAxisView::reflect_selected (Selection &selection)
|
||||
TimeAxisView::show_selection (Selection &selection)
|
||||
{
|
||||
//give children a chance to be selected
|
||||
for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
|
||||
(*i)->reflect_selected (selection);
|
||||
(*i)->show_selection (selection);
|
||||
}
|
||||
|
||||
//determine if I am in the selection
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@ class TimeAxisView : public virtual AxisView, public Stateful
|
|||
virtual void hide ();
|
||||
bool hidden() const { return _hidden; }
|
||||
|
||||
virtual void reflect_selected (Selection&);
|
||||
virtual void show_selection (Selection&);
|
||||
|
||||
/**
|
||||
* potential handler for entered events
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue