Hi , i finaly found the solution :
i only needed to use the QMdiSubWindow's method : widget() to be able to acess my currently opened widget's methods and signals ...
SO it will become :
self.mdiArea.activeSubWindow().widget().update_move_state()
self.mdiArea.activeSubWindow().widget().update_move_state()
To copy to clipboard, switch view to plain text mode
instead of :
self.mdiArea.activeSubWindow().update_move_state()
self.mdiArea.activeSubWindow().update_move_state()
To copy to clipboard, switch view to plain text mode
Bookmarks