mirror of https://github.com/m-labs/artiq.git
gui: fix shortcut pipeline
This commit is contained in:
parent
f0eed1182a
commit
0e375e4980
|
@ -368,12 +368,9 @@ class ExplorerDock(dockarea.Dock):
|
||||||
arguments = self.argeditor_states[key]["argument_values"]
|
arguments = self.argeditor_states[key]["argument_values"]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
arguments = dict()
|
arguments = dict()
|
||||||
asyncio.ensure_future(self.submit_task(self.pipeline.text(),
|
asyncio.ensure_future(self.submit_task(pipeline, expinfo["file"],
|
||||||
expinfo["file"],
|
|
||||||
expinfo["class_name"],
|
expinfo["class_name"],
|
||||||
arguments,
|
arguments, priority, due_date,
|
||||||
priority,
|
|
||||||
due_date,
|
|
||||||
flush))
|
flush))
|
||||||
|
|
||||||
def submit_clicked(self):
|
def submit_clicked(self):
|
||||||
|
|
Loading…
Reference in New Issue