diff --git a/locales/en.yml b/locales/en.yml index 1ee08a3c..88aa52fe 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -97,9 +97,6 @@ config_window: send_message_to_vrc: label: Send Message To VRChat desc: There is a way to use it without sending messages to VRChat. That is not covered by support, though. - startup_osc_enabled_check: - label: Check If OSC Is Enabled At Startup - desc: Every time VRCT is started up, your character in VRChat moves forward ever so slightly. If your character is seated, they might even stand up. Unfortunately, this is the only method we've found to check if OSC is enabled at startup... Sorry about that. (Remember to turn on OSC yourself when you want to send messages to VRChat.) osc_ip_address: label: OSC IP Address diff --git a/locales/ja.yml b/locales/ja.yml index 4fe7887b..ed424fd0 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -99,9 +99,6 @@ config_window: send_message_to_vrc: label: VRChatにメッセージを送信する desc: VRChatにメッセージを送信せずに使う方法があります。サポート対象外ですが。 - startup_osc_enabled_check: - label: 起動時にOSCが有効になっているか確認する - desc: 起動時に毎回、キャラクターがほんの少し前進します。もしsit判定などある場所に座っている場合、立ってしまうかもしれません。残念ながら今のところ私達はOSCがVRChat側で有効になっているか確認する方法がこれしか見つけられていません。ごめんね。(このチェック機能をオフにする場合、自分でOSCをオンにすることを忘れないでね。) osc_ip_address: label: OSC IP Address diff --git a/vrct_gui/main_window/widgets/create_minimize_sidebar_button.py b/vrct_gui/main_window/widgets/create_minimize_sidebar_button.py index de15cc89..83585e98 100644 --- a/vrct_gui/main_window/widgets/create_minimize_sidebar_button.py +++ b/vrct_gui/main_window/widgets/create_minimize_sidebar_button.py @@ -67,9 +67,4 @@ def createMinimizeSidebarButton(settings, main_window, view_variable): main_window.minimize_sidebar_button_container__for_opening.grid(row=0, column=0, sticky="nsw") main_window.minimize_sidebar_button_container__for_closing.grid(row=0, column=0, sticky="nsw") - main_window.minimize_sidebar_button_container__for_opening.grid_remove() - main_window.minimize_sidebar_button_container__for_closing.grid_remove() - if view_variable.IS_MAIN_WINDOW_SIDEBAR_COMPACT_MODE is True: - main_window.minimize_sidebar_button_container__for_opening.grid() - else: - main_window.minimize_sidebar_button_container__for_closing.grid() \ No newline at end of file + main_window.minimize_sidebar_button_container__for_opening.grid_remove() \ No newline at end of file diff --git a/vrct_gui/main_window/widgets/create_sidebar.py b/vrct_gui/main_window/widgets/create_sidebar.py index 09c1a58a..4605bef4 100644 --- a/vrct_gui/main_window/widgets/create_sidebar.py +++ b/vrct_gui/main_window/widgets/create_sidebar.py @@ -26,12 +26,7 @@ def createSidebar(settings, main_window, view_variable): main_window.sidebar_bg_container.grid(row=0, column=0, sticky="nsew") main_window.sidebar_compact_mode_bg_container.grid(row=0, column=0, sticky="nsew") - main_window.sidebar_bg_container.grid_remove() main_window.sidebar_compact_mode_bg_container.grid_remove() - if view_variable.IS_MAIN_WINDOW_SIDEBAR_COMPACT_MODE: - main_window.sidebar_compact_mode_bg_container.grid() - else: - main_window.sidebar_bg_container.grid() # Config Button diff --git a/vrct_gui/vrct_gui.py b/vrct_gui/vrct_gui.py index 3b0ce31f..38335495 100644 --- a/vrct_gui/vrct_gui.py +++ b/vrct_gui/vrct_gui.py @@ -46,6 +46,8 @@ class VRCT_GUI(CTk): self.attributes("-alpha", 0) self.deiconify() setGeometryToCenterOfScreen(root_widget=self) + if self._view_variable.IS_MAIN_WINDOW_SIDEBAR_COMPACT_MODE is True: + self._enableMainWindowSidebarCompactMode() fadeInAnimation(self, steps=5, interval=0.008) def _createGUI(self, settings, view_variable):