diff --git a/data/icons/README b/data/icons/README index 39fc52a..ce43cb5 100644 --- a/data/icons/README +++ b/data/icons/README @@ -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 index 0000000..7fa489c Binary files /dev/null and b/data/icons/document-save.png differ diff --git a/src/qweechat/qweechat.py b/src/qweechat/qweechat.py index 9f611c3..e589f22 100755 --- a/src/qweechat/qweechat.py +++ b/src/qweechat/qweechat.py @@ -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 = {}