Skip to content

Commit

Permalink
Fix proposed Issue #28
Browse files Browse the repository at this point in the history
  • Loading branch information
brombinmirko committed Apr 29, 2018
1 parent ddd1b1f commit be725c8
Show file tree
Hide file tree
Showing 8 changed files with 3,902 additions and 9 deletions.
6 changes: 3 additions & 3 deletions bottles/detail.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ def __init__(self, parent):
self.grid_1.add(self.button_drive_c)

# Winecfg
self.button_wine_cfg = Gtk.Button.new_from_icon_name("wine-winecfg", Gtk.IconSize.DIALOG)
self.button_wine_cfg = Gtk.Button.new_from_icon_name("bottles_wine-winecfg", Gtk.IconSize.DIALOG)
self.button_wine_cfg.connect("clicked", self.on_button_wine_cfg_clicked)
self.grid_1.add(self.button_wine_cfg)

# Winetricks
self.button_winetricks = Gtk.Button.new_from_icon_name("winetricks", Gtk.IconSize.DIALOG)
self.button_winetricks = Gtk.Button.new_from_icon_name("bottles_winetricks", Gtk.IconSize.DIALOG)
self.button_winetricks.connect("clicked", self.on_button_winetricks_clicked)
self.grid_1.add(self.button_winetricks)

Expand Down Expand Up @@ -149,7 +149,7 @@ def __init__(self, parent):
self.grid_5.add(self.button_regedit)

# Uninstaller
self.button_uninstaller = Gtk.Button.new_from_icon_name("wine-uninstaller", Gtk.IconSize.DIALOG)
self.button_uninstaller = Gtk.Button.new_from_icon_name("bottles_wine-uninstaller", Gtk.IconSize.DIALOG)
self.button_uninstaller.connect("clicked", self.on_button_uninstaller_clicked)
self.grid_5.add(self.button_uninstaller)

Expand Down
2 changes: 1 addition & 1 deletion bottles/welcome.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(self, parent):
self.welcome = self.welcome.new(cn.App.application_name, cn.App.application_description)

# Welcome voices
self.welcome.append("wine", _('New bottle'), _('Create a new bottle'))
self.welcome.append("bottles_wine", _('New bottle'), _('Create a new bottle'))
self.welcome.append("document-import", _('Import and convert'), _('Import a third-party wineprefix'))
self.welcome.append("gnome-mime-application-x-archive", _('List bottles'), _('List all bottles'))

Expand Down
Loading

0 comments on commit be725c8

Please sign in to comment.