diff --git a/pype/tools/launcher/models.py b/pype/tools/launcher/models.py index 3fb201702e..b2743d221c 100644 --- a/pype/tools/launcher/models.py +++ b/pype/tools/launcher/models.py @@ -199,6 +199,9 @@ class ActionModel(QtGui.QStandardItemModel): if order is None or action.order < order: order = action.order + if icon is None: + icon = self.default_icon + item = QtGui.QStandardItem(icon, action.label) item.setData(actions, self.ACTION_ROLE) item.setData(True, self.VARIANT_GROUP_ROLE)