From 32a579ec28c9a34fb1c932e37869dddfd37fce2f Mon Sep 17 00:00:00 2001 From: nick_m Date: Mon, 20 Jun 2016 04:21:33 +1000 Subject: [PATCH] Fix ordering thinko in note selected colour. --- gtk2_ardour/note_base.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/note_base.cc b/gtk2_ardour/note_base.cc index 6bd6425ac5..ff0ec34dfb 100644 --- a/gtk2_ardour/note_base.cc +++ b/gtk2_ardour/note_base.cc @@ -145,9 +145,9 @@ NoteBase::set_selected(bool selected) return; } - const uint32_t base_col = base_color(); - _selected = selected; + + const uint32_t base_col = base_color(); set_fill_color (base_col); set_outline_color(calculate_outline(base_col, _selected)); -- 2.30.2