mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-01 10:32:40 +00:00
fix
This commit is contained in:
parent
b006dfe799
commit
69c1701c85
2 changed files with 6 additions and 1 deletions
|
@ -1036,6 +1036,11 @@ Pos=60,60\n\
|
|||
Size=145,184\n\
|
||||
Collapsed=0\n\
|
||||
\n\
|
||||
[Window][Oscilloscope (X-Y)]\n\
|
||||
Pos=60,60\n\
|
||||
Size=128,128\n\
|
||||
Collapsed=0\n\
|
||||
\n\
|
||||
[Docking][Data]\n\
|
||||
DockSpace ID=0x8B93E3BD Window=0xA787BDB4 Pos=0,24 Size=1280,776 Split=Y Selected=0x6C01C512\n\
|
||||
DockNode ID=0x00000001 Parent=0x8B93E3BD SizeRef=1280,217 Split=X Selected=0xF3094A52\n\
|
||||
|
|
|
@ -30,7 +30,7 @@ void FurnaceGUI::drawXYOsc() {
|
|||
nextWindow=GUI_WINDOW_NOTHING;
|
||||
}
|
||||
if (!xyOscOpen) return;
|
||||
ImGui::SetNextWindowSizeConstraints(ImVec2(300.0f*dpiScale,300.0f*dpiScale),ImVec2(canvasW,canvasH));
|
||||
ImGui::SetNextWindowSizeConstraints(ImVec2(128.0f*dpiScale,128.0f*dpiScale),ImVec2(canvasW,canvasH));
|
||||
bool noPadding=settings.oscTakesEntireWindow && !xyOscOptions;
|
||||
if (noPadding) {
|
||||
ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding,ImVec2(0,0));
|
||||
|
|
Loading…
Reference in a new issue