Fix right side of border rectangle

This commit is contained in:
Ray Chason
2026-08-19 09:37:41 +03:00
committed by Pasi Kallinen
parent 392142d322
commit b8dc070d07
+1 -1
View File
@@ -418,7 +418,7 @@ update_label(Widget w, WidgetData *data)
XftDrawRect(draw, &fgcolor, 0, 0, width, 1);
XftDrawRect(draw, &fgcolor, 0, height-1, width, 1);
XftDrawRect(draw, &fgcolor, 0, 0, 1, height);
XftDrawRect(draw, &fgcolor, 0, height-1, 1, height);
XftDrawRect(draw, &fgcolor, width-1, 0, 1, height);
#else
XDrawRectangle(display, new_pixmap, ggc, 0, 0, width-1, height-1);
#endif