mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Fix arrangement rectangle prelight
This follows the general rule to lighten a widget on hover (like ArdourButton, Triggermaster etc)
This commit is contained in:
parent
5082dc62a4
commit
ed60ef40b0
1 changed files with 1 additions and 1 deletions
|
|
@ -1133,7 +1133,7 @@ Editor::section_rect_event (GdkEvent* ev, Location* loc, ArdourCanvas::Rectangle
|
|||
switch (ev->type) {
|
||||
case GDK_ENTER_NOTIFY:
|
||||
if (UIConfiguration::instance ().get_widget_prelight ()) {
|
||||
rect->set_fill_color (UIConfiguration::instance().color_mod (color, "marker bar"));
|
||||
rect->set_fill_color (Gtkmm2ext::HSV (UIConfiguration::instance().color (color)).lighter (0.25));
|
||||
return true;
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue