mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
NO-OP: clarify variable name
This commit is contained in:
parent
85034d0bca
commit
be701f0248
2 changed files with 6 additions and 6 deletions
|
|
@ -121,7 +121,7 @@ Mixer_UI::Mixer_UI ()
|
||||||
, _show_foldback_strip (true)
|
, _show_foldback_strip (true)
|
||||||
, _strip_width (UIConfiguration::instance().get_default_narrow_ms() ? Narrow : Wide)
|
, _strip_width (UIConfiguration::instance().get_default_narrow_ms() ? Narrow : Wide)
|
||||||
, _spill_scroll_position (0)
|
, _spill_scroll_position (0)
|
||||||
, ignore_reorder (false)
|
, ignore_track_reorder (false)
|
||||||
, _in_group_rebuild_or_clear (false)
|
, _in_group_rebuild_or_clear (false)
|
||||||
, _route_deletion_in_progress (false)
|
, _route_deletion_in_progress (false)
|
||||||
, _maximised (false)
|
, _maximised (false)
|
||||||
|
|
@ -739,7 +739,7 @@ Mixer_UI::remove_strip (MixerStrip* strip)
|
||||||
strips.erase (i);
|
strips.erase (i);
|
||||||
}
|
}
|
||||||
|
|
||||||
PBD::Unwinder<bool> uwi (ignore_reorder, true);
|
PBD::Unwinder<bool> uwi (ignore_track_reorder, true);
|
||||||
|
|
||||||
for (ri = rows.begin(); ri != rows.end(); ++ri) {
|
for (ri = rows.begin(); ri != rows.end(); ++ri) {
|
||||||
if ((*ri)[stripable_columns.strip] == strip) {
|
if ((*ri)[stripable_columns.strip] == strip) {
|
||||||
|
|
@ -785,7 +785,7 @@ Mixer_UI::presentation_info_changed (PropertyChange const & what_changed)
|
||||||
void
|
void
|
||||||
Mixer_UI::sync_presentation_info_from_treeview ()
|
Mixer_UI::sync_presentation_info_from_treeview ()
|
||||||
{
|
{
|
||||||
if (ignore_reorder || !_session || _session->deletion_in_progress()) {
|
if (ignore_track_reorder || !_session || _session->deletion_in_progress()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -892,7 +892,7 @@ Mixer_UI::sync_treeview_from_presentation_info (PropertyChange const & what_chan
|
||||||
}
|
}
|
||||||
|
|
||||||
if (changed) {
|
if (changed) {
|
||||||
Unwinder<bool> uw (ignore_reorder, true);
|
Unwinder<bool> uw (ignore_track_reorder, true);
|
||||||
track_model->reorder (neworder);
|
track_model->reorder (neworder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1814,7 +1814,7 @@ Mixer_UI::initial_track_display ()
|
||||||
* them here because we're going to clear the track_model also.
|
* them here because we're going to clear the track_model also.
|
||||||
*/
|
*/
|
||||||
Unwinder<bool> uw1 (no_track_list_redisplay, true);
|
Unwinder<bool> uw1 (no_track_list_redisplay, true);
|
||||||
Unwinder<bool> uw2 (ignore_reorder, true);
|
Unwinder<bool> uw2 (ignore_track_reorder, true);
|
||||||
|
|
||||||
track_model->clear ();
|
track_model->clear ();
|
||||||
add_stripables (sl);
|
add_stripables (sl);
|
||||||
|
|
|
||||||
|
|
@ -379,7 +379,7 @@ private:
|
||||||
void sync_treeview_from_presentation_info (PBD::PropertyChange const &);
|
void sync_treeview_from_presentation_info (PBD::PropertyChange const &);
|
||||||
void sync_presentation_info_from_treeview ();
|
void sync_presentation_info_from_treeview ();
|
||||||
|
|
||||||
bool ignore_reorder;
|
bool ignore_track_reorder;
|
||||||
|
|
||||||
void parameter_changed (std::string const &);
|
void parameter_changed (std::string const &);
|
||||||
void set_route_group_activation (ARDOUR::RouteGroup *, bool);
|
void set_route_group_activation (ARDOUR::RouteGroup *, bool);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue