diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-12-02 17:46:49 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-12-02 17:46:49 +0100 |
| commit | 981aa8c2e7b519accfb42c9690dd04fb404122c5 (patch) | |
| tree | ef40abccff6f7921f6748cea5a6eafda9814b1a8 /src/Fl_Graphics_Driver.cxx | |
| parent | 9a7f4bdfcebe04ff85e75d9fc999b3731c9941e4 (diff) | |
Fix: Drawing bugs on Windows at very large scales (#1144)
Diffstat (limited to 'src/Fl_Graphics_Driver.cxx')
| -rw-r--r-- | src/Fl_Graphics_Driver.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Fl_Graphics_Driver.cxx b/src/Fl_Graphics_Driver.cxx index 78678de55..4f69967d6 100644 --- a/src/Fl_Graphics_Driver.cxx +++ b/src/Fl_Graphics_Driver.cxx @@ -1199,7 +1199,6 @@ void Fl_Scalable_Graphics_Driver::draw_image_mono_unscaled(Fl_Draw_Image_Cb cb, float Fl_Scalable_Graphics_Driver::override_scale() { float s = scale(); if (s != 1.f) { - push_no_clip(); scale(1.f); } return s; @@ -1208,7 +1207,6 @@ float Fl_Scalable_Graphics_Driver::override_scale() { void Fl_Scalable_Graphics_Driver::restore_scale(float s) { if (s != 1.f) { scale(s); - pop_clip(); } } |
