Compare commits

...

1 Commits

Author SHA1 Message Date
chrome-storm-c442
05706182df v1.9.33: raise tabview closer to header icons (remove top padding)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 05:50:20 -05:00
3 changed files with 2 additions and 2 deletions

View File

@@ -250,7 +250,7 @@ class App(ctk.CTk):
# Create new tabview
self.tabview = ctk.CTkTabview(self._main_frame, command=self._on_tab_changed)
self.tabview.pack(fill="both", expand=True, padx=10, pady=10)
self.tabview.pack(fill="both", expand=True, padx=10, pady=(0, 10))
for key in self._tab_keys:
self.tabview.add(_tab_label(key))

View File

@@ -1,6 +1,6 @@
"""Version info for ServerManager."""
__version__ = "1.9.32"
__version__ = "1.9.33"
__app_name__ = "ServerManager"
__author__ = "aibot777"
__description__ = "Desktop GUI for managing remote servers"