Skip to content

Commit b4102c0

Browse files
committed
Fix pause emblem compositing (fixes #24)
1 parent 6a12853 commit b4102c0

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

system-config-printer.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1030,7 +1030,9 @@ def populateList(self, prompt_allowed=True):
10301030
try:
10311031
other_emblem = theme.load_icon (emblem, w/2, 0)
10321032
copy = pixbuf.copy ()
1033-
other_emblem.composite (copy, 0, 0,
1033+
other_emblem.composite (copy,
1034+
copy.get_width () / 2,
1035+
copy.get_height () / 2,
10341036
other_emblem.get_width (),
10351037
other_emblem.get_height (),
10361038
copy.get_width () / 2,

0 commit comments

Comments
 (0)