We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6df231 commit e2f2d7aCopy full SHA for e2f2d7a
odmtools/gui/pnlScript.py
@@ -172,10 +172,15 @@ def runCommand(self, text):
172
#restart recording
173
174
def OnExecute(self, e):
175
- self.runCommand(self.control.GetText())
+ # self.runCommand(self.control.GetText())
176
+ for l in self.control.GetText().split('\n'):
177
+ self.runCommand(l)
178
+
179
180
def OnExecuteSelection(self, e):
- self.runCommand(self.control.GetSelectedTextRaw())
181
+ # self.runCommand(self.control.GetSelectedTextRaw())
182
183
184
185
def OnExecuteLine(self, e):
186
text = self.control.GetSelectedTextRaw()
0 commit comments