You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "for" loop containing the QlineEdit is supposed to wait for a Return keypressed or Enter key pressed and then process the self.Enterpressed_dosomething method if the following command receive the signal (here editingFinished). self.lineEdit.editingFinished.connect(self.Enterpressed_dosomething)
Instead of that, the loop finishes all the iteration and then the QlineEdit widget continues to activate self.Enterpressed_dosomething method when Enter or Returned pressed whereas the loop is finished. How can i make the loop wait for the signals (returnPressed or editingFinished or textChanged )?