Make sure gears.color.create_png_pattern are being repeated

This commit is contained in:
Emmanuel Lepage Vallee 2014-03-15 18:53:01 -04:00 committed by Uli Schlachter
parent 9b872f4bce
commit c2fff5396d
1 changed files with 3 additions and 1 deletions

View File

@ -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.