https://bugs.kde.org/show_bug.cgi?id=381351
Bug ID: 381351
Summary: Multi HiDPI screens invalid placement
Product: yakuake
Version: Git (Frameworks 5)
Platform: openSUSE RPMs
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: NOR
Component: general
Assignee: [email protected]
Reporter: [email protected]
Target Milestone: ---
On my setup with two hidpi monitors (2560x1440 and 3840x2160) and a window
scaling factor of 1.3, the yakuake window would not have the correct
coordinates on the larger screen.
Changing the MainWindow::getDesktopGeometry() code to just this fixes the issue
for me:
QRect MainWindow::getDesktopGeometry()
{
QRect screenGeometry =
QApplication::desktop()->availableGeometry(getScreen());
return screenGeometry();
}
It works with full screen etc. It removes a lot of code relating to struts - it
seems that that code doesn't work in my multi-monitor scenario.
--
You are receiving this mail because:
You are watching all bug changes.