From 098af866dd1d782ddecea31bccce743ddef63ea7 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Sun, 8 Feb 2026 15:32:02 +0800 Subject: [PATCH] fractional scale adjust --- koboldcpp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koboldcpp.py b/koboldcpp.py index 58f36d9e5..f1f9f2948 100755 --- a/koboldcpp.py +++ b/koboldcpp.py @@ -5289,7 +5289,7 @@ def show_gui(): global using_gui_launcher using_gui_launcher = True - #check for wayland with fractional scale + #check for potential scaling issues def get_problematic_scaler(): if sys.platform != "linux": return False @@ -5384,7 +5384,7 @@ def show_gui(): root = ctk.CTk(fg_color="#2b2b2b") if corrupt_scaler: print("Adjusting tk scaling to try and fix scaling issues...") - root.tk.call('tk','scaling',2) + root.tk.call('tk','scaling', 2.25) root.geometry(str(windowwidth) + "x" + str(windowheight)) root.title(f"KoboldCpp v{KcppVersion}")