Lagrange [release]
Progress bar colors; thicker on HiDPI displays
[1mdiff --git a/src/ui/indicatorwidget.c b/src/ui/indicatorwidget.c[m
[1mindex d43e23d9..96556912 100644[m
[1m--- a/src/ui/indicatorwidget.c[m
[1m+++ b/src/ui/indicatorwidget.c[m
[36m@@ -103,11 +103,13 @@[m [mvoid draw_IndicatorWidget_(const iIndicatorWidget *d) {[m
const iRect rect = innerBounds_Widget(w);[m
iPaint p;[m
init_Paint(&p);[m
[31m- drawHLine_Paint(&p,[m
[31m- topLeft_Rect(rect),[m
[31m- pos * width_Rect(rect),[m
[31m- isCompleted_IndicatorWidget_(d) ? uiTextAction_ColorId[m
[31m- : uiTextCaution_ColorId);[m
[32m+[m[32m int colors[2] = { uiTextCaution_ColorId, uiTextAction_ColorId };[m
[32m+[m[32m if (isLight_ColorTheme(colorTheme_App())) {[m
[32m+[m[32m colors[0] = black_ColorId;[m
[32m+[m[32m }[m
[32m+[m[32m fillRect_Paint(&p,[m
[32m+[m[32m (iRect){ topLeft_Rect(rect), init_I2(pos * width_Rect(rect), gap_UI / 4)},[m
[32m+[m[32m colors[isCompleted_IndicatorWidget_(d) ? 1 : 0]);[m
}[m
}[m
[m