Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 修复在dde-dock中右键菜单系统监视器图标无法激活系统监视器窗口到顶层 #273

Merged
merged 1 commit into from
Jul 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
deepin-system-monitor (5.9.38) unstable; urgency=medium

* New version 5.9.38

-- shuaijie <[email protected]> Mon, 17 Jul 2023 18:29:06 +0800

deepin-system-monitor (5.9.35) unstable; urgency=medium

* New version 5.9.35
Expand Down
4 changes: 3 additions & 1 deletion deepin-system-monitor-main/dbus/dbus_object.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ void DBusObject::handleWindow()
{
internalMutex.lockForRead();
MainWindow *mw = gApp->mainWindow();
mw->setWindowState((mw->windowState() & ~Qt::WindowMinimized) | Qt::WindowActive);
mw->setWindowState(mw->windowState() & ~Qt::WindowMinimized);
mw->raise();
mw->activateWindow();
internalMutex.unlock();
}

Expand Down
Loading