diff --git a/img/vrct_logo_for_dark_mode.png b/img/vrct_logo_for_dark_mode.png index 7eeaabc2..53add076 100644 Binary files a/img/vrct_logo_for_dark_mode.png and b/img/vrct_logo_for_dark_mode.png differ diff --git a/img/vrct_logo_for_light_mode.png b/img/vrct_logo_for_light_mode.png index 75b1afd9..ad2b0b95 100644 Binary files a/img/vrct_logo_for_light_mode.png and b/img/vrct_logo_for_light_mode.png differ diff --git a/img/vrct_logo_mark_black.png b/img/vrct_logo_mark_black.png index 7a593e8c..4e4fce17 100644 Binary files a/img/vrct_logo_mark_black.png and b/img/vrct_logo_mark_black.png differ diff --git a/img/vrct_logo_mark_white.png b/img/vrct_logo_mark_white.png index 0a6f1968..f99621f7 100644 Binary files a/img/vrct_logo_mark_white.png and b/img/vrct_logo_mark_white.png differ diff --git a/vrct_gui/config_window/widgets/createConfigWindowTitle.py b/vrct_gui/config_window/widgets/createConfigWindowTitle.py index e638f61c..4c10dbce 100644 --- a/vrct_gui/config_window/widgets/createConfigWindowTitle.py +++ b/vrct_gui/config_window/widgets/createConfigWindowTitle.py @@ -27,7 +27,7 @@ def createConfigWindowTitle(config_window, settings): font=CTkFont(family=settings.FONT_FAMILY, size=settings.uism.TOP_BAR_SIDE__CONFIG_TITLE_FONT_SIZE, weight="bold"), text_color=settings.ctm.LABELS_TEXT_COLOR, ) - config_window.side_menu_config_window_title.place(relx=0.275, rely=0.5, anchor="w") + config_window.side_menu_config_window_title.place(relx=0.255, rely=0.5, anchor="w") config_window.side_menu_config_window_title_logo = CTkLabel( config_window.side_menu_config_window_title_logo_frame, @@ -36,4 +36,4 @@ def createConfigWindowTitle(config_window, settings): anchor="w", image=CTkImage(settings.image_file.VRCT_LOGO_MARK, size=settings.uism.TOP_BAR_SIDE__CONFIG_LOGO_MARK_SIZE), ) - config_window.side_menu_config_window_title_logo.place(relx=0.08, rely=0.59, anchor="w") + config_window.side_menu_config_window_title_logo.place(relx=0.08, rely=0.58, anchor="w") diff --git a/vrct_gui/ui_managers/UiScalingManager.py b/vrct_gui/ui_managers/UiScalingManager.py index 0eb5c5d4..cb8cec2a 100644 --- a/vrct_gui/ui_managers/UiScalingManager.py +++ b/vrct_gui/ui_managers/UiScalingManager.py @@ -40,7 +40,7 @@ class UiScalingManager(): # Sidebar Features self.main.SF__LOGO_MAX_SIZE = self._calculateUiSize(120) self.main.SF__LOGO_PADY = (self._calculateUiSize(12),self._calculateUiSize(8)) - self.main.SF__LOGO_HEIGHT_FOR_ADJUSTMENT = (self._calculateUiSize(8)) + self.main.SF__LOGO_HEIGHT_FOR_ADJUSTMENT = (self._calculateUiSize(6)) self.main.SF__LABELS_IPADY = self._calculateUiSize(16) self.main.SF__COMPACT_MODE_ICON_PADY = self.main.SF__LABELS_IPADY @@ -95,7 +95,7 @@ class UiScalingManager(): # Top bar Side self.config_window.TOP_BAR_SIDE__WIDTH = self._calculateUiSize(220) - self.config_window.TOP_BAR_SIDE__CONFIG_LOGO_MARK_SIZE = self.dupTuple(self._calculateUiSize(30)) + self.config_window.TOP_BAR_SIDE__CONFIG_LOGO_MARK_SIZE = self.dupTuple(self._calculateUiSize(28)) self.config_window.TOP_BAR_SIDE__CONFIG_TITLE_FONT_SIZE = self._calculateUiSize(22) self.config_window.TOP_BAR_SIDE__CONFIG_TITLE_LEFT_PADX = int(self.config_window.TOP_BAR_SIDE__CONFIG_TITLE_FONT_SIZE + self._calculateUiSize(16)) self.config_window.TOP_BAR_SIDE__TITLE_PADX= self._calculateUiSize(30)