diff --git a/resources/bullet_key.png b/resources/bullet_key.png deleted file mode 100644 index 3d37f2e..0000000 Binary files a/resources/bullet_key.png and /dev/null differ diff --git a/resources/user_key.png b/resources/user_key.png new file mode 100644 index 0000000..c60e6f9 Binary files /dev/null and b/resources/user_key.png differ diff --git a/syncplay/ui/gui.py b/syncplay/ui/gui.py index 4c11b2c..073b2cc 100644 --- a/syncplay/ui/gui.py +++ b/syncplay/ui/gui.py @@ -27,7 +27,7 @@ class UserlistItemDelegate(QtGui.QStyledItemDelegate): resourcespath = utils.findWorkingDir() + "\\resources\\" else: resourcespath = utils.findWorkingDir() + "/resources/" - controlIconQPixmap = QtGui.QPixmap(resourcespath + "bullet_key.png") + controlIconQPixmap = QtGui.QPixmap(resourcespath + "user_key.png") tickIconQPixmap = QtGui.QPixmap(resourcespath + "tick.png") crossIconQPixmap = QtGui.QPixmap(resourcespath + "cross.png") roomController = currentQAbstractItemModel.data(itemQModelIndex, Qt.UserRole + constants.USERITEM_CONTROLLER_ROLE)