RunSolver: Fix copy methode.

setup.py
Pierre-Antoine Rouby 2024-04-08 15:37:00 +02:00
parent ae21315593
commit de1f5c1944
2 changed files with 5 additions and 6 deletions

View File

@ -217,6 +217,9 @@ class SolverLogWindow(PamhyrWindow):
self._alarm.stop()
super(SolverLogWindow, self).closeEvent(event)
def _copy(self):
self.find(QTextEdit, "textEdit").copy()
#######
# LOG #
#######

View File

@ -78,14 +78,10 @@ class PamhyrWindowTools(object):
self._paste_sc.activated.connect(self._paste)
def _copy(self):
if self._copy_stack is not None:
self._copy_stack.copy()
self._update()
return
def _paste(self):
if self._copy_stack is not None:
self._copy_stack.redo()
self._update()
return
# Display