[system/xwaylandvideobridge] src: Make the bridge window frameless so it can't eat clicks
Hadi Chokr <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 22efe5d1c24954655cc38ecb67c01271f201c0c3 by Hadi Chokr. Committed on 29/07/2026 at 08:20. Pushed by silverhadch into branch 'master'. Make the bridge window frameless so it can't eat clicks BUG: 522597 Signed-off-by: Hadi Chokr <[email protected]> M +1 -0 src/contentswindow.cpp https://invent.kde.org/system/xwaylandvideobridge/-/commit/22efe5d1c24954655cc38ecb67c01271f201c0c3 diff --git a/src/contentswindow.cpp b/src/contentswindow.cpp index 02dbd84..690580f 100644 --- a/src/contentswindow.cpp +++ b/src/contentswindow.cpp @@ -43,6 +43,7 @@ ContentsWindow::ContentsWindow() setOpacity(0); setFlag(Qt::WindowDoesNotAcceptFocus); setFlag(Qt::WindowTransparentForInput); + setFlag(Qt::FramelessWindowHint); KX11Extras::setState(winId(), NET::SkipTaskbar | NET::SkipPager | NET::SkipSwitcher);