mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
Make sure gears.color.create_png_pattern are being repeated
This commit is contained in:
parent
5fdce4d845
commit
7349f3b902
1 changed files with 3 additions and 1 deletions
|
@ -71,7 +71,9 @@ function color.create_png_pattern(file)
|
|||
file = file.file
|
||||
end
|
||||
local image = surface.load(file)
|
||||
return cairo.Pattern.create_for_surface(image)
|
||||
local pattern = cairo.Pattern.create_for_surface(image)
|
||||
pattern:set_extend(cairo.Extend.REPEAT)
|
||||
return pattern
|
||||
end
|
||||
|
||||
-- Add stops to the given pattern.
|
||||
|
|
Loading…
Reference in a new issue