diff --git a/qweechat/data/icons/README b/qweechat/data/icons/README index 84a43e8..9f5afb9 100644 --- a/qweechat/data/icons/README +++ b/qweechat/data/icons/README @@ -2,7 +2,7 @@ Copyright and license for images ================================ -Files: weechat_icon_32.png, bullet_green_8x8.png, bullet_yellow_8x8.png +Files: weechat.png, bullet_green_8x8.png, bullet_yellow_8x8.png Copyright (C) 2011-2016 Sébastien Helleu Released under GPLv3. diff --git a/qweechat/data/icons/weechat.png b/qweechat/data/icons/weechat.png new file mode 100644 index 0000000..7eca5c8 Binary files /dev/null and b/qweechat/data/icons/weechat.png differ diff --git a/qweechat/data/icons/weechat_icon_32.png b/qweechat/data/icons/weechat_icon_32.png deleted file mode 100644 index 692e6f8..0000000 Binary files a/qweechat/data/icons/weechat_icon_32.png and /dev/null differ diff --git a/qweechat/qweechat.py b/qweechat/qweechat.py index c12b3da..cf0bca3 100644 --- a/qweechat/qweechat.py +++ b/qweechat/qweechat.py @@ -550,6 +550,6 @@ class MainWindow(QtGui.QMainWindow): app = QtGui.QApplication(sys.argv) app.setStyle(QtGui.QStyleFactory.create('Cleanlooks')) app.setWindowIcon(QtGui.QIcon( - resource_filename(__name__, 'data/icons/weechat_icon_32.png'))) + resource_filename(__name__, 'data/icons/weechat.png'))) main = MainWindow() sys.exit(app.exec_())