Mixer/Plugin_Chooser: Add a little padding in table cells.
This commit is contained in:
parent
171975b26b
commit
851be29d6a
|
@ -195,20 +195,21 @@ void Plugin_Table::draw_cell(TableContext context,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
fl_push_clip(X, Y, W, H);
|
|
||||||
{
|
|
||||||
// BG COLOR
|
|
||||||
fl_color( row_selected(R) ? selection_color() : FL_DARK1);
|
fl_color( row_selected(R) ? selection_color() : FL_DARK1);
|
||||||
fl_rectf(X, Y, W, H);
|
fl_rectf(X, Y, W, H);
|
||||||
|
fl_color(color());
|
||||||
|
fl_rect(X, Y, W, H);
|
||||||
|
|
||||||
|
X+=4;
|
||||||
|
W-=8;
|
||||||
|
Y+=4;
|
||||||
|
H-=8;
|
||||||
|
|
||||||
|
fl_push_clip(X, Y, W, H);
|
||||||
|
|
||||||
// TEXT
|
|
||||||
fl_color(c);
|
fl_color(c);
|
||||||
fl_draw(s2, X, Y, W, H, a, 0, symbol );
|
fl_draw(s2, X, Y, W, H, a, 0, symbol );
|
||||||
|
|
||||||
// BORDER
|
|
||||||
fl_color(color());
|
|
||||||
fl_rect(X, Y, W, H);
|
|
||||||
}
|
|
||||||
fl_pop_clip();
|
fl_pop_clip();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue