After initiating JSplitPane, using following code:
//Create a split pane for the first side and second side of the card
splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, scrollPaneFirstSide, scrollPaneSecondSide);
splitPane.setOneTouchExpandable(true);
splitPane.setDividerLocation(JSplitPane.CENTER_ALIGNMENT);
Devider looks OK.
After changing the direction Vertical <-> Horizontal with folling command:
After initiating JSplitPane, using following code:
Devider looks OK.
After changing the direction Vertical <-> Horizontal with folling command:
, the devider split is too thin and cannot be moved any longer.