Fix ordering thinko in note selected colour.

This commit is contained in:
nick_m 2016-06-20 04:21:33 +10:00
parent 9f61f8a5b0
commit 32a579ec28
1 changed files with 2 additions and 2 deletions

View File

@ -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));