We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be0142a commit bfa3a83Copy full SHA for bfa3a83
Source/CanvasViewport.h
@@ -700,9 +700,12 @@ class CanvasViewport final : public Viewport
700
701
cnv->getParentComponent()->setSize(getWidth(), getHeight());
702
703
+ // This fixes some graphical glitches on macOS and Linux, but causes resize issues on Windows
704
+#if !JUCE_WINDOWS
705
if(!scaleChanged) {
706
editor->nvgSurface.renderAll();
707
}
708
+#endif
709
710
711
void resized() override
0 commit comments