Skip to content

Commit

Permalink
wasm: fix showing tooltips
Browse files Browse the repository at this point in the history
Change-Id: I4c82ccc2bfa1019ef105ccf20982786097c126b9
Fixes: QTBUG-87227
Pick-to: 5.15
Reviewed-by: Morten Johan Sørvig <[email protected]>
  • Loading branch information
lpotter committed Nov 18, 2020
1 parent 8455bfe commit d91edd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/widgets/kernel/qtooltip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ bool QTipLabel::eventFilter(QObject *o, QEvent *e)
break;


#if defined (Q_OS_QNX) // On QNX the window activate and focus events are delayed and will appear
#if defined (Q_OS_QNX) || defined (Q_OS_WASM) // On QNX the window activate and focus events are delayed and will appear
// after the window is shown.
case QEvent::WindowActivate:
case QEvent::FocusIn:
Expand Down

0 comments on commit d91edd2

Please sign in to comment.