--- a/PipxInterface/PipxWidget.py Tue Jun 25 17:58:25 2024 +0200 +++ b/PipxInterface/PipxWidget.py Tue Jun 25 17:59:15 2024 +0200 @@ -44,6 +44,7 @@ super().__init__(parent) self.setupUi(self) + self.__plugin = plugin self.__pipx = Pipx(self) if fromEric: @@ -135,5 +136,5 @@ """ if item.parent() is not None: app = item.data(0, PipxWidget.AppPathRole) - dlg = PipxAppStartDialog(app, self) + dlg = PipxAppStartDialog(app, self.__plugin, self) dlg.show()