Skip to content

Properly test internal window flags

Vlad Zahorodnii requested to merge work/properly-test-window-flags into master

Qt::Popup is a mask, so we cannot use the & operator to test the window type. We need to use QFlags::testFlag() for that purpose instead.

Merge request reports