File tree Expand file tree Collapse file tree
RubyScript/src/org/knime/ext/jruby Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -200,16 +200,13 @@ class RubyScriptNodeDialog(private var factory: RubyScriptNodeFactory)
200200 new BoxLayout (peer, BoxLayout .PAGE_AXIS ))
201201 if (num > 0 ) minimumSize = new Dimension (20 , 150 )
202202 for (i <- 0 until num) {
203- contents .add(addColumnPane(" Input[%d] columns: " .format(i), i))
203+ peer .add(addColumnPane(" Input[%d] columns: " .format(i), i).peer )
204204 }
205+ visible = true
205206 }
206207 val flowVariablesPanel = addFlowVariablesPane(" Flow variables: " )
207208 val splitPane = new SplitPane (Orientation .Horizontal ,
208- inputColumnsPanel, flowVariablesPanel) {
209- dividerLocation = size.height
210- - peer.getInsets().bottom
211- - dividerSize - 50
212- }
209+ inputColumnsPanel, flowVariablesPanel)
213210
214211 val config_and_sript =
215212 new SplitPane (Orientation .Vertical , splitPane, scriptPanel) {
You can’t perform that action at this time.
0 commit comments