summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2018-07-03 18:33:11 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2018-07-03 18:33:11 -0400
commit870fe055cfcc6c3a9a84c6aa51596a4b534b03cb (patch)
tree3ee55363efe1aa7702de2a895688e585e934ea4f /gtk2_ardour/editor.cc
parentb1ad462a7a05a5602abddd7eee0acf0187573cc7 (diff)
make use-note-color-for-velocity much much more efficient
(by not invoking the global color change signal)
Diffstat (limited to 'gtk2_ardour/editor.cc')
-rw-r--r--gtk2_ardour/editor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc
index ef5068a5ed..fe904dcb4d 100644
--- a/gtk2_ardour/editor.cc
+++ b/gtk2_ardour/editor.cc
@@ -6170,7 +6170,7 @@ Editor::ui_parameter_changed (string parameter)
ArdourCanvas::Note::set_show_velocity_bars (UIConfiguration::instance().get_use_note_bars_for_velocity());
_track_canvas->request_redraw (_track_canvas->visible_area());
} else if (parameter == "use-note-color-for-velocity") {
- UIConfiguration::instance().ColorsChanged(); /* EMIT SIGNAL */
+ /* handled individually by each MidiRegionView */
}
}