]> jfr.im git - irc/weechat/qweechat.git/commitdiff
Add icon "document-save.png" for entry "Save connection" in File menu
authorSebastien Helleu <redacted>
Sat, 27 Jul 2013 15:38:40 +0000 (17:38 +0200)
committerSebastien Helleu <redacted>
Sat, 27 Jul 2013 15:38:40 +0000 (17:38 +0200)
data/icons/README
data/icons/document-save.png [new file with mode: 0644]
src/qweechat/qweechat.py

index 39fc52af90eddc52312517456b37d1f52b513f7e..ce43cb5824f0ef7bbd89e4f6abf17e82ff585c58 100644 (file)
@@ -10,8 +10,8 @@ Files: weechat_icon_32.png, bullet_green_8x8.png, bullet_yellow_8x8.png
 
 
 Files: application-exit.png, dialog-close.png, dialog-ok-apply.png,
-       edit-find.png, help-about.png, network-connect.png, network-disconnect.png,
-       preferences-other.png
+       document-save.png, edit-find.png, help-about.png, network-connect.png,
+       network-disconnect.png, preferences-other.png
 
   Files come from Debian package "oxygen-icon-theme":
 
diff --git a/data/icons/document-save.png b/data/icons/document-save.png
new file mode 100644 (file)
index 0000000..7fa489c
Binary files /dev/null and b/data/icons/document-save.png differ
index 9f611c3bf4fca101d788a855005d5183d0e3595d..e589f22961faa701720ab917b0e6fbc44fd126ee 100755 (executable)
@@ -96,7 +96,7 @@ class MainWindow(QtGui.QMainWindow):
                        'debug'          : ['edit-find.png', 'Debug console window', 'Ctrl+B', self.open_debug_dialog],
                        'preferences'    : ['preferences-other.png', 'Preferences', 'Ctrl+P', self.open_preferences_dialog],
                        'about'          : ['help-about.png', 'About', 'Ctrl+H', self.open_about_dialog],
-                       'save connection': ['', 'Save connection configuration', 'Ctrl+S', self.save_connection],
+                       'save connection': ['document-save.png', 'Save connection configuration', 'Ctrl+S', self.save_connection],
                        'quit'           : ['application-exit.png', 'Quit application', 'Ctrl+Q', self.close],
                        }
         self.actions = {}