mirror of https://github.com/procxx/kepka.git
Make MediaView modal with MainWindow transient parent on Linux.
There is hope :) that it will force MediaView to be floating in tiling WMs. Possibly fixes #5048.
This commit is contained in:
parent
a241e10208
commit
b4aa213c64
|
@ -125,6 +125,10 @@ MediaView::MediaView()
|
||||||
|
|
||||||
hide();
|
hide();
|
||||||
createWinId();
|
createWinId();
|
||||||
|
if (cPlatform() == dbipLinux32 || cPlatform() == dbipLinux64) {
|
||||||
|
windowHandle()->setTransientParent(App::wnd()->windowHandle());
|
||||||
|
setWindowModality(Qt::WindowModal);
|
||||||
|
}
|
||||||
if (cPlatform() != dbipMac && cPlatform() != dbipMacOld) {
|
if (cPlatform() != dbipMac && cPlatform() != dbipMacOld) {
|
||||||
setWindowState(Qt::WindowFullScreen);
|
setWindowState(Qt::WindowFullScreen);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue