forked from quickshell/quickshell
wayland/all: scale layers and popup anchors correctly
Layers now scale window size and exclusive zone to native pixels. Popup anchors do the same.
This commit is contained in:
parent
293341c9e1
commit
accdc59a1c
2 changed files with 23 additions and 3 deletions
|
@ -1,6 +1,7 @@
|
|||
#include "surface.hpp"
|
||||
#include <any>
|
||||
|
||||
#include <private/qhighdpiscaling_p.h>
|
||||
#include <private/qwaylanddisplay_p.h>
|
||||
#include <private/qwaylandscreen_p.h>
|
||||
#include <private/qwaylandshellsurface_p.h>
|
||||
|
@ -70,7 +71,7 @@ QSWaylandLayerSurface::QSWaylandLayerSurface(
|
|||
// new updates will be sent from the extension
|
||||
this->ext->surface = this;
|
||||
|
||||
auto size = constrainedSize(this->ext->mAnchors, qwindow->size());
|
||||
auto size = constrainedSize(this->ext->mAnchors, window->surfaceSize());
|
||||
this->set_size(size.width(), size.height());
|
||||
}
|
||||
|
||||
|
@ -137,7 +138,8 @@ void QSWaylandLayerSurface::updateMargins() {
|
|||
}
|
||||
|
||||
void QSWaylandLayerSurface::updateExclusiveZone() {
|
||||
this->set_exclusive_zone(this->ext->mExclusiveZone);
|
||||
auto nativeZone = QHighDpi::toNativePixels(this->ext->mExclusiveZone, this->window()->window());
|
||||
this->set_exclusive_zone(nativeZone);
|
||||
this->window()->waylandSurface()->commit();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue