mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
LocationCompleterView: Only use special window flags on xcb platform
This commit is contained in:
parent
302bffa250
commit
9f266ac1e0
|
@ -31,15 +31,11 @@ LocationCompleterView::LocationCompleterView()
|
|||
setAttribute(Qt::WA_ShowWithoutActivating);
|
||||
setAttribute(Qt::WA_X11NetWmWindowTypeCombo);
|
||||
|
||||
#ifdef Q_OS_LINUX
|
||||
if (qApp->platformName() == QLatin1String("wayland")) {
|
||||
setWindowFlags(Qt::Popup);
|
||||
} else {
|
||||
if (qApp->platformName() == QL1S("xcb")) {
|
||||
setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::BypassWindowManagerHint);
|
||||
}
|
||||
#else
|
||||
} else {
|
||||
setWindowFlags(Qt::Popup);
|
||||
#endif
|
||||
}
|
||||
|
||||
setUniformItemSizes(true);
|
||||
setEditTriggers(QAbstractItemView::NoEditTriggers);
|
||||
|
|
Loading…
Reference in New Issue
Block a user