Example #1
0
 /** {@inheritDoc} */
 @Override
 public void finishedPaintingChildren(JSplitPane jc, Graphics g) {
   if (jc == splitPane && getLastDragLocation() != -1 && !isContinuousLayout() && !draggingHW) {
     if (jc.getOrientation() == JSplitPane.HORIZONTAL_SPLIT) {
       paintDragDivider(g, getLastDragLocation(), 0, dividerSize - 1, splitPane.getHeight() - 1);
     } else {
       paintDragDivider(g, 0, getLastDragLocation(), splitPane.getWidth() - 1, dividerSize - 1);
     }
   }
 }