From 4c77eaba8020d6b27e4285f5994f76ac09c4606c Mon Sep 17 00:00:00 2001 From: tildearrow Date: Mon, 10 Jul 2023 04:32:56 -0500 Subject: [PATCH] GUI: fix watermark position --- src/gui/gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index cc946fbd..dd760e0f 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -5762,7 +5762,7 @@ bool FurnaceGUI::loop() { #ifdef DIV_UNSTABLE { ImDrawList* dl=ImGui::GetForegroundDrawList(); - ImVec2 markPos=ImVec2(canvasW-ImGui::CalcTextSize(DIV_VERSION).x-6.0*dpiScale,6.0*dpiScale); + ImVec2 markPos=ImVec2(canvasW-ImGui::CalcTextSize(DIV_VERSION).x-6.0*dpiScale,4.0*dpiScale); ImVec4 markColor=uiColors[GUI_COLOR_TEXT]; markColor.w=0.67f;