From c7719e5074050eea633ed2e8336e2db6d19c1963 Mon Sep 17 00:00:00 2001 From: lixueman Date: Thu, 1 Sep 2022 09:28:08 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=A4=9A=E4=BD=99=E6=89=93?= =?UTF-8?q?=E5=8D=B0=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/UserInterface/ListView/klistview.cpp | 1 - src/UserInterface/ListView/listview.cpp | 1 - src/UserInterface/mainwindow.cpp | 2 -- 3 files changed, 4 deletions(-) diff --git a/src/UserInterface/ListView/klistview.cpp b/src/UserInterface/ListView/klistview.cpp index d5eb537..1588014 100755 --- a/src/UserInterface/ListView/klistview.cpp +++ b/src/UserInterface/ListView/klistview.cpp @@ -45,7 +45,6 @@ void KListView::onClicked(QModelIndex index) QVariant var = listmodel->data(index, Qt::DisplayRole); if (var.isValid()) { QString desktopfp = var.value(); - myDebug() << "KListView点击应用" << desktopfp << "触发隐藏信号"; Q_EMIT sendHideMainWindowSignal(); QtConcurrent::run(execApp, QString(desktopfp)); } diff --git a/src/UserInterface/ListView/listview.cpp b/src/UserInterface/ListView/listview.cpp index c90d452..ea511c2 100755 --- a/src/UserInterface/ListView/listview.cpp +++ b/src/UserInterface/ListView/listview.cpp @@ -108,7 +108,6 @@ void ListView::onClicked(QModelIndex index) if (var.value().at(1).toInt() == 0) { Q_EMIT sendAppClassificationBtnClicked(); } else { - myDebug() << "ListView打开应用触发隐藏"; Q_EMIT sendHideMainWindowSignal(); QtConcurrent::run(execApp, QString(desktopfp)); } diff --git a/src/UserInterface/mainwindow.cpp b/src/UserInterface/mainwindow.cpp index 13b1b23..c45be17 100755 --- a/src/UserInterface/mainwindow.cpp +++ b/src/UserInterface/mainwindow.cpp @@ -1316,13 +1316,11 @@ void MainWindow::hideWindow() { myDebug() << "调用开始菜单隐藏"; if (m_fullWindow->isVisible()) { - myDebug() << "全屏窗口隐藏"; m_fullWindow->hide(); m_fullWindow->resetEditline(); this->clearFocus(); m_isFullScreen = true; } else { - myDebug() << "默认窗口隐藏"; this->hide(); m_topStackedWidget->setCurrentIndex(0); m_lineEdit->clear();