pygui removed dumping commands multiple times in run window as they are included before node output

This commit is contained in:
Blake Harnden 2020-04-23 08:54:43 -07:00
parent aa2537753e
commit ea99b628fc

View file

@ -100,9 +100,6 @@ class RunToolDialog(Dialog):
command = self.cmd.get().strip()
self.result.text.config(state=tk.NORMAL)
self.result.text.delete("1.0", tk.END)
self.result.text.insert(
tk.END, f"> {command}\n" * len(self.node_list.listbox.curselection())
)
for selection in self.node_list.listbox.curselection():
node_name = self.node_list.listbox.get(selection)
node_id = self.executable_nodes[node_name]