XdgPopup: fix unconstrain rect with layer surfaces
The used coordinates store where the layer is on the output, but we need the opposite.
This commit is contained in:
parent
bc610c8b82
commit
55cf8ad669
@ -69,8 +69,8 @@ pub fn create(wlr_xdg_popup: *wlr.XdgPopup, parent: Parent) void {
|
|||||||
const output_dimensions = layer_surface.output.getEffectiveResolution();
|
const output_dimensions = layer_surface.output.getEffectiveResolution();
|
||||||
// The output box relative to the parent of the xdg_popup
|
// The output box relative to the parent of the xdg_popup
|
||||||
var box = wlr.Box{
|
var box = wlr.Box{
|
||||||
.x = layer_surface.box.x,
|
.x = -layer_surface.box.x,
|
||||||
.y = layer_surface.box.y,
|
.y = -layer_surface.box.y,
|
||||||
.width = @intCast(c_int, output_dimensions.width),
|
.width = @intCast(c_int, output_dimensions.width),
|
||||||
.height = @intCast(c_int, output_dimensions.height),
|
.height = @intCast(c_int, output_dimensions.height),
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user