13
0

fix thinko in previous attempt to tackle active/selected state in dndvbox

git-svn-id: svn://localhost/ardour2/branches/3.0@10424 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-11-03 16:18:27 +00:00
parent 370a8ba79a
commit a059b75238

View File

@ -527,7 +527,7 @@ private:
void setup_child_state (T* c)
{
assert (c);
c->set_visual_state (Selected, _active == c);
c->set_visual_state (Selected, (selected (c) || (_active == c)));
}
void clear_selection ()