Scrollbars on JGoView

Hi,

How do I make the ScrollBars disappear in my JGoView when:
  1. I have dragged and dropped an object outside of the viewable screen.
  2. The triggers the ScrollBars to be created, which is correct.
  3. I then drag to object back to the top left of the JgoView and NO objects remain outside of the current screen view.
  4. The ScrollBars are still displayed even though there is no content outside of the view area.
What needs to be done to remove the ScrollBars?
Mark

Just set the horizontal and vertical scrollbars to null:

myGoView.setHorizontalScrollBar(null);
myGoView.setVerticalScrollBar(null);