Skip to content
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
5 changes: 5 additions & 0 deletions panels/dock/dockhelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ bool DockHelper::eventFilter(QObject *watched, QEvent *event)
return false;
}

// skip tooltip windows
if (window->flags().testFlags(Qt::ToolTip)) {
return false;
}

auto topTransientParent = window;
while (topTransientParent->transientParent()) {
topTransientParent = topTransientParent->transientParent();
Expand Down
2 changes: 1 addition & 1 deletion panels/dock/dockpanel.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private Q_SLOTS:
Q_SIGNALS:
void geometryChanged(QRect geometry);
void frontendWindowRectChanged(QRect frontendWindowRect);
void hideStateChanged(HideState state); // not emitted
void hideStateChanged(HideState state);
void colorThemeChanged(ColorTheme theme);
void compositorReadyChanged();

Expand Down