Skip to content

Commit

Permalink
fix: wrong position of notification
Browse files Browse the repository at this point in the history
wrong position of notification in 4k screen

Issue: linuxdeepin/developer-center#8026
  • Loading branch information
FeiWang1119 committed Apr 23, 2024
1 parent e564890 commit 3b879d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dde-osd/src/notification/bubblemanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ void BubbleManager::initConnections()

if (useBuiltinBubble()) {
connect(m_displayInter, &DisplayInter::PrimaryRectChanged, this, &BubbleManager::geometryChanged, Qt::QueuedConnection);
connect(m_dockInter, &DBusDockInterface::geometryChanged, this, &BubbleManager::geometryChanged, Qt::UniqueConnection);
connect(m_dockDeamonInter, &DockInter::FrontendWindowRectChanged, this, &BubbleManager::geometryChanged, Qt::UniqueConnection);
connect(m_dockDeamonInter, &DockInter::serviceValidChanged, this, &BubbleManager::geometryChanged, Qt::UniqueConnection);

connect(qApp, &QApplication::primaryScreenChanged, this, [ = ] {
Expand Down

0 comments on commit 3b879d4

Please sign in to comment.