Skip to content

Commit 02977f1

Browse files
committed
ExtensionCore.py: GtkLabel argument should be a string.
Fixes #13259
1 parent 035d223 commit 02977f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

files/usr/share/cinnamon/cinnamon-settings/bin/ExtensionCore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ def __init__(self, uuid, data, spices, size_groups):
767767
score_box = Gtk.Box()
768768
score_image = Gtk.Image.new_from_icon_name('xsi-starred-symbolic', 2)
769769
score_box.pack_start(score_image, False, False, 0)
770-
score_label = Gtk.Label(self.score)
770+
score_label = Gtk.Label(label=str(self.score))
771771
score_box.pack_start(score_label, False, False, 5)
772772
widget.pack_start(score_box, False, False, 0)
773773
size_groups[1].add_widget(score_box)

0 commit comments

Comments
 (0)