hyprland: fix pip aspect ratio
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
d74f26e5a7
commit
f7ad0794bd
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ in {
|
|||
x = tr (width / scale - (toInt w) - gap - border);
|
||||
y = tr (gap + border);
|
||||
w = tr (width / scale * 0.25 - gap - gap / 2 - border * 2); # 25%
|
||||
h = tr ((toInt w) * 9 / 16); # 16:9 aspect ratio
|
||||
h = tr ((toInt w) * 9 / 16 + 1); # 16:9 aspect ratio
|
||||
};
|
||||
|
||||
### Rules
|
||||
|
|
Loading…
Reference in a new issue