Lagrange [release]
DocumentWidget: Fine-tuning reload indicator position
[1mdiff --git a/src/ui/indicatorwidget.c b/src/ui/indicatorwidget.c[m
[1mindex a5348ea7..20adbdab 100644[m
[1m--- a/src/ui/indicatorwidget.c[m
[1m+++ b/src/ui/indicatorwidget.c[m
[36m@@ -77,13 +77,14 @@[m [mvoid draw_IndicatorWidget_(const iIndicatorWidget *d) {[m
if (isLight_ColorTheme(colorTheme_App())) {[m
colors[0] = black_ColorId;[m
}[m
[31m- fillRect_Paint(&p,[m
[31m- (iRect){ addY_I2(topLeft_Rect(rect),[m
[31m- /* Active root indicator is also a line at the top, [m
[31m- so need a little offset if in split view. */[m
[31m- numRoots_Window(window_Widget(d)) > 1 ? gap_UI / 2 : 0),[m
[31m- init_I2(pos * width_Rect(rect), gap_UI / 3) },[m
[31m- colors[isCompleted_IndicatorWidget_(d) ? 1 : 0]);[m
[32m+[m[32m fillRect_Paint([m
[32m+[m[32m &p,[m
[32m+[m[32m (iRect){ addY_I2(topLeft_Rect(rect),[m
[32m+[m[32m /* Active root indicator is also a line at the top,[m
[32m+[m[32m so need a little offset if in split view. */[m
[32m+[m[32m numRoots_Window(window_Widget(d)) > 1 ? gap_UI / 2 : (gap_UI / 4)),[m
[32m+[m[32m init_I2(pos * width_Rect(rect), gap_UI / 3) },[m
[32m+[m[32m colors[isCompleted_IndicatorWidget_(d) ? 1 : 0]);[m
}[m
}[m
[m