Skip to content

Commit

Permalink
improve xlet download and autostart run icons (#11918)
Browse files Browse the repository at this point in the history
  • Loading branch information
schorschii authored Dec 8, 2023
1 parent 9eeeece commit 545de45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ def __init__(self, uuid, data, spices, size_groups):
size_groups[3].add_widget(self.button_box)

if not self.installed:
download_button = Gtk.Button.new_from_icon_name('go-down-symbolic', 2)
download_button = Gtk.Button.new_from_icon_name('folder-download-symbolic', 2)
self.button_box.pack_start(download_button, False, False, 0)
download_button.connect('clicked', self.download)
download_button.set_tooltip_text(_("Install"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ def __init__(self, title):
self.remove_button.set_sensitive(False)
box.add(self.remove_button)

self.run_button = Gtk.Button.new_from_icon_name("system-run-symbolic", Gtk.IconSize.BUTTON)
self.run_button = Gtk.Button.new_from_icon_name("media-playback-start-symbolic", Gtk.IconSize.BUTTON)
self.run_button.set_tooltip_text(_("Run now"))
self.run_button.connect("clicked", self.on_run_button_clicked)
button_group.add_widget(self.run_button)
Expand Down

0 comments on commit 545de45

Please sign in to comment.