@@ -87,8 +87,8 @@ def open_settings_window(self):
87
87
88
88
# Create a new top-level window for settings
89
89
settings_window = ctk .CTkToplevel (self )
90
- settings_window .title ("API Key Settings" )
91
- settings_window .geometry ("700x370 " ) # Adjusted size to fit API key entries
90
+ settings_window .title ("TinyChat - Settings" )
91
+ settings_window .geometry ("700x360 " ) # Adjusted size to fit API key entries
92
92
settings_window .transient (self ) # type:ignore - Set to be on top of the main window
93
93
94
94
# Configure grid layout
@@ -166,7 +166,7 @@ def open_settings_window(self):
166
166
fg_color = ("#0C955A" , "#106A43" ),
167
167
hover_color = "#2c6e49" ,
168
168
)
169
- close .grid (row = 8 , column = 1 , padx = (0 , 0 ), pady = (10 , 0 ), sticky = "w" )
169
+ close .grid (row = 8 , column = 1 , padx = (0 , 0 ), pady = (0 , 0 ), sticky = "w" )
170
170
171
171
# Add a save button to the settings window
172
172
save = ctk .CTkButton (
@@ -176,7 +176,7 @@ def open_settings_window(self):
176
176
fg_color = ("#0C955A" , "#106A43" ),
177
177
hover_color = "#2c6e49" ,
178
178
)
179
- save .grid (row = 8 , column = 1 , padx = (150 , 0 ), pady = (10 , 0 ), sticky = "w" )
179
+ save .grid (row = 8 , column = 1 , padx = (150 , 0 ), pady = (0 , 0 ), sticky = "w" )
180
180
181
181
def init_temperature_values (self ):
182
182
temperature = get_secret ("temperature" )
0 commit comments