mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
Fix view centering on HiDPI outputs
This commit is contained in:
parent
ca8cf7d48d
commit
975b9dc365
1 changed files with 2 additions and 0 deletions
|
@ -126,6 +126,8 @@ bool view_center(struct roots_view *view) {
|
|||
|
||||
int width, height;
|
||||
wlr_output_effective_resolution(output, &width, &height);
|
||||
width /= output->scale;
|
||||
height /= output->scale;
|
||||
|
||||
double view_x = (double)(width - box.width) / 2 + l_output->x;
|
||||
double view_y = (double)(height - box.height) / 2 + l_output->y;
|
||||
|
|
Loading…
Reference in a new issue