瀏覽代碼

UI: Fix checked state of source toolbar menu item

After the source toolbar was hidden or shown by a hotkey, the checked
state of the menu item was not updated.
Norihiro Kamae 2 年之前
父節點
當前提交
a1c88d58fc
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      UI/window-basic-main.cpp

+ 2 - 0
UI/window-basic-main.cpp

@@ -9475,11 +9475,13 @@ void OBSBasic::on_toggleListboxToolbars_toggled(bool visible)
 void OBSBasic::ShowContextBar()
 {
 	on_toggleContextBar_toggled(true);
+	ui->toggleContextBar->setChecked(true);
 }
 
 void OBSBasic::HideContextBar()
 {
 	on_toggleContextBar_toggled(false);
+	ui->toggleContextBar->setChecked(false);
 }
 
 void OBSBasic::on_toggleContextBar_toggled(bool visible)