From b006dfe7994c1a0b1ba3ed5b874ed8e1f52a57eb Mon Sep 17 00:00:00 2001 From: LTVA1 <87536432+LTVA1@users.noreply.github.com> Date: Wed, 6 Dec 2023 16:13:15 +0300 Subject: [PATCH] fix --- src/gui/xyOsc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/xyOsc.cpp b/src/gui/xyOsc.cpp index 3a00b811d..93f939eba 100644 --- a/src/gui/xyOsc.cpp +++ b/src/gui/xyOsc.cpp @@ -30,7 +30,7 @@ void FurnaceGUI::drawXYOsc() { nextWindow=GUI_WINDOW_NOTHING; } if (!xyOscOpen) return; - ImGui::SetNextWindowSizeConstraints(ImVec2(64.0f*dpiScale,32.0f*dpiScale),ImVec2(canvasW,canvasH)); + ImGui::SetNextWindowSizeConstraints(ImVec2(300.0f*dpiScale,300.0f*dpiScale),ImVec2(canvasW,canvasH)); bool noPadding=settings.oscTakesEntireWindow && !xyOscOptions; if (noPadding) { ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding,ImVec2(0,0));