Fix for artefact in X11 1-pixel thick rect drawing with some drivers (#156, #1052)

This commit is contained in:
ManoloFLTK 2024-08-26 22:55:59 +02:00
parent 9568d5bb73
commit 008d71f5b7
1 changed files with 3 additions and 0 deletions

View File

@ -228,7 +228,10 @@ void Fl_Xlib_Graphics_Driver::focus_rect(int x, int y, int w, int h) {
}
void Fl_Xlib_Graphics_Driver::rect_unscaled(int x, int y, int w, int h) {
void *old = NULL;
if (line_width_ == 0) old = change_pen_width(1); // #156, #1052
XDrawRectangle(fl_display, fl_window, gc_, x, y, w, h);
if (old) reset_pen_width(old);
}
void Fl_Xlib_Graphics_Driver::rectf_unscaled(int x, int y, int w, int h) {