PyQt 5 QTableWidget.cellClicked Signal Not Working
PyQt 5 QTableWidget.cellClicked Signal Not Working I am trying to make a simple files app (or, file explorer app) and I am using the QTableWidget to Display the files and directories. When the user clicks an directory, I want the program to jump to that directory. I have used the QTableWidget.cellClicked signal, and it does not currently work. The signal part: self.filesTable.connect(print)#self.updateUiCellClick) Added print instead of self.updateUiCellClick for debugging purposes. Code (probably you do not need this): #!/usr/bin/python3 print('i Import Modules') print(' | Import sys') import sys print(' | Import PyQt5.QtCore') from PyQt5.QtCore import * print(' | Import PyQt5.QtGui') from PyQt5.QtGui import * print(' | Import PyQt5.QtWidgets') from PyQt5.QtWidgets import * # PyQt5 Support print(' | Import os') import os print(' | Import subprocess.Popen') # For backward-compatibility from subprocess import Popen, PIPE print(...