Try to improve coloring of urgent/active rows that are selected.

This commit is contained in:
QC 2015-04-05 10:40:35 +02:00
parent 8cc553ebaf
commit 808eee4b85

View file

@ -147,12 +147,22 @@ void textbox_font ( textbox *tb, TextBoxFontType tbft )
} }
if ( ( tbft & FMOD_MASK ) ) { if ( ( tbft & FMOD_MASK ) ) {
if ( ( tbft & ACTIVE ) ) { if ( ( tbft & ACTIVE ) ) {
if(tbft&HIGHLIGHT) {
tb->color_fg = color_hlfg;
tb->color_bg = color_fg_active;
}else {
tb->color_fg = color_fg_active; tb->color_fg = color_fg_active;
} }
}
else if ( ( tbft & URGENT ) ) { else if ( ( tbft & URGENT ) ) {
if(tbft&HIGHLIGHT) {
tb->color_fg = color_hlfg;
tb->color_bg = color_fg_urgent;
}else {
tb->color_fg = color_fg_urgent; tb->color_fg = color_fg_urgent;
} }
} }
}
tb->tbft = tbft; tb->tbft = tbft;
} }