From a1fcf0702b2c062d7f989e432fe6c74aa2b2b061 Mon Sep 17 00:00:00 2001 From: misygauziya Date: Thu, 27 Jul 2023 15:09:58 +0900 Subject: [PATCH] =?UTF-8?q?[bugfix]=20checkbox=E3=82=92=E6=8A=BC=E3=81=97?= =?UTF-8?q?=E3=81=9F=E6=99=82=E3=81=ABconfig=20button=E3=81=AE=E3=82=B5?= =?UTF-8?q?=E3=82=A4=E3=82=BA=E3=81=8C=E5=A4=89=E5=8C=96=E3=81=99=E3=82=8B?= =?UTF-8?q?=E5=95=8F=E9=A1=8C=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VRCT.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/VRCT.py b/VRCT.py index 3dae5308..b4f2a18a 100644 --- a/VRCT.py +++ b/VRCT.py @@ -325,8 +325,8 @@ class App(CTk): # add button information self.button_information = CTkButton( self.sidebar_frame, - text="", - width=25, + text=None, + width=36, command=self.button_information_callback, image=CTkImage(Image_open(os_path.join(os_path.dirname(__file__), "img", "info-icon-white.png"))) ) @@ -336,8 +336,8 @@ class App(CTk): # add button config self.button_config = CTkButton( self.sidebar_frame, - text="", - width=25, + text=None, + width=36, command=self.button_config_callback, image=CTkImage(Image_open(os_path.join(os_path.dirname(__file__), "img", "config-icon-white.png"))) )