Skip to content

Commit

Permalink
change nav icons in sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
cvfosammmm committed Feb 15, 2022
1 parent 912cd03 commit cab7b39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setzer/workspace/sidebar/sidebar_viewgtk.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ def __init__(self):
self.tabs.set_icon_size(Gtk.IconSize.SMALL_TOOLBAR)

self.prev_button = Gtk.ToolButton()
self.prev_button.set_icon_name('go-previous-symbolic')
self.prev_button.set_icon_name('go-up-symbolic')
self.prev_button.set_focus_on_click(False)
self.prev_button.set_tooltip_text(_('Back'))
self.tabs.insert(self.prev_button, -1)

self.next_button = Gtk.ToolButton()
self.next_button.set_icon_name('go-next-symbolic')
self.next_button.set_icon_name('go-down-symbolic')
self.next_button.set_focus_on_click(False)
self.next_button.set_tooltip_text(_('Forward'))
self.tabs.insert(self.next_button, -1)
Expand Down

0 comments on commit cab7b39

Please sign in to comment.