all repos — tint2 @ 55de4c27b849e53cbf9f8c829c2ba220da3b1084

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Separator: fix line bug in vertical panel
o9000 mrovi9000@gmail.com
commit

55de4c27b849e53cbf9f8c829c2ba220da3b1084

parent

d49ecee3a7cf9ae0bec50f1e53be52700f298675

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/separator/separator.csrc/separator/separator.c

@@ -157,7 +157,7 @@ cairo_move_to(c, separator->area.width / 2.0, separator->area.height / 2.0 - separator->length / 2.0);

cairo_line_to(c, separator->area.width / 2.0, separator->area.height / 2.0 + separator->length / 2.0); } else { cairo_move_to(c, separator->area.width / 2.0 - separator->length / 2.0, separator->area.height / 2.0); - cairo_line_to(c, separator->area.width / 2.0 - separator->length / 2.0, separator->area.height / 2.0); + cairo_line_to(c, separator->area.width / 2.0 + separator->length / 2.0, separator->area.height / 2.0); } cairo_stroke(c); }