mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
trigger page: slightly differentiate the rows of cues by color
This commit is contained in:
parent
92f3681977
commit
c72b6fc930
1 changed files with 10 additions and 5 deletions
|
|
@ -190,15 +190,20 @@ void
|
|||
CueEntry::set_default_colors ()
|
||||
{
|
||||
color_t bg_col = UIConfiguration::instance ().color ("theme:bg");
|
||||
|
||||
//alternating darker bands
|
||||
if ((_cue_idx / 2) % 2 == 0) {
|
||||
bg_col = HSV (bg_col).darker (0.25).color ();
|
||||
}
|
||||
|
||||
set_fill_color (bg_col);
|
||||
name_button->set_fill_color (UIConfiguration::instance ().color ("neutral:midground"));
|
||||
name_text->set_color (UIConfiguration::instance ().color ("neutral:background"));
|
||||
|
||||
color_t fg_col = UIConfiguration::instance ().color ("neutral:midground");
|
||||
if ((_cue_idx / 2) % 2 == 0) {
|
||||
fg_col = HSV (fg_col).darker (0.20).color ();
|
||||
}
|
||||
name_button->set_fill_color (fg_col);
|
||||
|
||||
name_text->set_fill_color (UIConfiguration::instance ().color ("neutral:background"));
|
||||
|
||||
if (TriggerBox::cue_recording()) {
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue