From 51cac6f30c7adffd4f0e9c31d86292253bce2141 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Tue, 15 Jul 2025 18:22:44 +0800 Subject: [PATCH] add a title to load config --- koboldcpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koboldcpp.py b/koboldcpp.py index d25936764..f576c6e1d 100644 --- a/koboldcpp.py +++ b/koboldcpp.py @@ -5727,7 +5727,7 @@ def show_gui(): def load_config_gui(): #this is used to populate the GUI with a config file, whereas load_config_cli simply overwrites cli args file_type = [("KoboldCpp Settings", "*.kcpps *.kcppt")] global runmode_untouched, zenity_permitted - filename = zentk_askopenfilename(filetypes=file_type, defaultextension=".kcppt", initialdir=None) + filename = zentk_askopenfilename(filetypes=file_type, defaultextension=".kcppt", initialdir=None, title="Select kcpps or kcppt settings config file") if not filename or filename=="": return if not os.path.exists(filename) or os.path.getsize(filename)<4 or os.path.getsize(filename)>50000000: #for sanity, check invaid kcpps