From f1bace5a108ce91a4dd5156563140534b24fc02a Mon Sep 17 00:00:00 2001 From: BECATRUE Date: Wed, 10 Jan 2024 16:00:56 +0900 Subject: [PATCH] Set clipboard text to experiment info See also: #240 --- iquip/apps/scheduler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/iquip/apps/scheduler.py b/iquip/apps/scheduler.py index 39158dab..803919c0 100644 --- a/iquip/apps/scheduler.py +++ b/iquip/apps/scheduler.py @@ -295,6 +295,7 @@ def copyExperimentInfo(self): return row = index.row() info = self.schedulerFrame.scheduleModel.experimentInfo(row) + QGuiApplication.clipboard().setText(info) def setDeleteActions(self): """Sets experiment deletion actions in schedulerFrame.scheduleView."""