Skip to content

Commit

Permalink
nemo-compare: Replace the preference window's button images with
Browse files Browse the repository at this point in the history
labels.
  • Loading branch information
mtwebster committed Jul 7, 2023
1 parent dfa2ee8 commit d25b09f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nemo-compare/src/nemo-compare-preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@ def __init__(self):
confirm_hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=0)
main_vbox.pack_start(confirm_hbox, False, False, 0)

cancel_button = Gtk.Button.new_from_icon_name("dialog-cancel", Gtk.IconSize.BUTTON)
cancel_button = Gtk.Button(label=_("Cancel"))
cancel_button.connect_object("clicked", self.cancel_event, self.window, None)
confirm_hbox.pack_start(cancel_button, True, True, 5)

ok_button = Gtk.Button.new_from_icon_name("dialog-ok", Gtk.IconSize.BUTTON)
ok_button = Gtk.Button(label=_("Ok"))
ok_button.connect_object("clicked", self.save_event, self.window, None)
confirm_hbox.pack_start(ok_button, True, True, 5)

Expand Down

0 comments on commit d25b09f

Please sign in to comment.