Hey, I'm having an issue with the Qt Interface in my Python 3.5/PyQt5 application.

I'm calling the following function QtWidgets.QFileDialog.getExistingDirectory(dialog, "Select Directory")) via this button in the code self.uib_setdirectory.clicked.connect(self.setdire ctory).

Everything works well, however the issue is that the button stays pressed down after the QFileDialog is done.
Only when I press another button in the Interface the highlighting ends.

Am I missing a specific function call to disable the selection after the file Dialog?