mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
gears.wallpaper: Center maximized if no offset set
maximized() used to align the image with (0,0) so that it is shifted to the right or bottom. Most wallpapers are designed from the center, so this behavior is not desired usually. With this commit the wallpaper is centered when no offset is set. To get the old behavior use {x=0, y=0} for the offset parameter.
This commit is contained in:
parent
9a0ba0ff57
commit
b6cdccda96
1 changed files with 2 additions and 0 deletions
|
@ -138,6 +138,8 @@ function wallpaper.maximized(surf, s, ignore_aspect, offset)
|
|||
|
||||
if offset then
|
||||
cr:translate(offset.x, offset.y)
|
||||
elseif not ignore_aspect then
|
||||
cr:translate(((geom.width / aspect_w) - w) / 2, ((geom.height / aspect_h) - h) / 2)
|
||||
end
|
||||
|
||||
cr:set_source_surface(surf, 0, 0)
|
||||
|
|
Loading…
Reference in a new issue