Lagrange [release]
DocumentWidget: Progress indicator not showing in split view
[1mdiff --git a/src/ui/indicatorwidget.c b/src/ui/indicatorwidget.c[m
[1mindex e16550ff..a5348ea7 100644[m
[1m--- a/src/ui/indicatorwidget.c[m
[1m+++ b/src/ui/indicatorwidget.c[m
[36m@@ -78,7 +78,11 @@[m [mvoid draw_IndicatorWidget_(const iIndicatorWidget *d) {[m
colors[0] = black_ColorId;[m
}[m
fillRect_Paint(&p,[m
[31m- (iRect){ topLeft_Rect(rect), init_I2(pos * width_Rect(rect), gap_UI / 3)},[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[41m [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 : 0),[m
[32m+[m[32m init_I2(pos * width_Rect(rect), gap_UI / 3) },[m
colors[isCompleted_IndicatorWidget_(d) ? 1 : 0]);[m
}[m
}[m