]> git.lizzy.rs Git - torbrowser-launcher.git/commitdiff
added icon to exit button for errors
authorMicah Lee <micahflee@riseup.net>
Mon, 18 Feb 2013 03:26:58 +0000 (19:26 -0800)
committerMicah Lee <micahflee@riseup.net>
Mon, 18 Feb 2013 03:26:58 +0000 (19:26 -0800)
torbrowser-launcher

index e0638628137e1eaee7f57349f0557ee3e08fcd68..1f7b6c55107bb3f5aab3b8f7b0cd4cd761b98a4d 100755 (executable)
@@ -147,7 +147,10 @@ class TorBrowserLauncher:
       self.label2.show()
 
       # exit button
+      exit_image = gtk.Image()
+      exit_image.set_from_stock(gtk.STOCK_CANCEL, gtk.ICON_SIZE_BUTTON)
       self.exit_button = gtk.Button("Exit")
+      self.exit_button.set_image(exit_image)
       self.exit_button.connect("clicked", self.destroy, None)
       self.box.add(self.exit_button)
       self.exit_button.show()