1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-01 03:36:23 +03:00

eeshow/gui.c (set_history_style): show revisions without valid sheets in red

This commit is contained in:
Werner Almesberger 2016-08-15 00:53:14 -03:00
parent 8d465b0da0
commit 5e9bc68093

View File

@ -475,6 +475,8 @@ static void set_history_style(struct gui_hist *h, bool current)
if (h->identical)
style.fg = RGBA(0.5, 0.5, 0.5, 1);
if (!h->sheets)
style.fg = RGBA(0.7, 0.0, 0.0, 1);
overlay_style(h->over, &style);
}