Skip to content

Commit

Permalink
TEMP: fix rendering behind toast
Browse files Browse the repository at this point in the history
  • Loading branch information
CendioOssman committed Sep 30, 2024
1 parent 3f2d3a6 commit f0c4377
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vncviewer/toast.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ Toast::Toast(QWidget* parent)

setAttribute(Qt::WA_TransparentForMouseEvents);
setAttribute(Qt::WA_NoSystemBackground);
setAttribute(Qt::WA_TranslucentBackground);
// FIXME: This prevents rendering of lower widgets on Qt6 on X11
//setAttribute(Qt::WA_TranslucentBackground);
// FIXME: These two are for windows, not widgets. Are they needed?
setWindowFlag(Qt::WindowTransparentForInput, true);
setWindowFlag(Qt::WindowDoesNotAcceptFocus, true);

Expand Down

0 comments on commit f0c4377

Please sign in to comment.