Implement csd_filter list

This commit is contained in:
Leon Henrik Plickat
2020-07-16 01:21:22 +02:00
committed by Isaac Freund
parent 91126388b5
commit be29b0ef95
6 changed files with 64 additions and 13 deletions

View File

@ -88,7 +88,7 @@ pub fn renderOutput(output: *Output) void {
if (view.focused) continue;
renderView(output.*, view, &now);
renderBorders(output.*, view, &now);
if (view.draw_borders) renderBorders(output.*, view, &now);
}
// Render focused views
@ -104,7 +104,7 @@ pub fn renderOutput(output: *Output) void {
if (!view.focused) continue;
renderView(output.*, view, &now);
renderBorders(output.*, view, &now);
if (view.draw_borders) renderBorders(output.*, view, &now);
}
if (build_options.xwayland) renderXwaylandUnmanaged(output.*, &now);