更新文档

This commit is contained in:
feiyangqingyun
2023-12-06 19:16:34 +08:00
parent e7120ffb24
commit 123a5b4bed
35 changed files with 290 additions and 207 deletions

View File

@@ -124,10 +124,10 @@ void VideoPanel::initMenu()
void VideoPanel::full()
{
if (actionFull->text() == "切换全屏模式") {
emit fullScreen(true);
Q_EMIT fullScreen(true);
actionFull->setText("切换正常模式");
} else {
emit fullScreen(false);
Q_EMIT fullScreen(false);
actionFull->setText("切换全屏模式");
}