Browse Source

Fixes textpane not autoscrolling on creation.

Change-Id: If3499a631e9dfe919bb1dab480c7c01504e39dc0
Reviewed-on: http://gerrit.dmdirc.com/1168
Automatic-Compile: DMDirc Local Commits <dmdirc@googlemail.com>
Reviewed-by: Chris Smith <chris@dmdirc.com>
tags/0.6.4
Greboid 14 years ago
parent
commit
6ded35dee3
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      src/com/dmdirc/addons/ui_swing/textpane/TextPane.java

+ 2
- 0
src/com/dmdirc/addons/ui_swing/textpane/TextPane.java View File

@@ -115,6 +115,8 @@ public final class TextPane extends JComponent implements MouseWheelListener,
115 115
             }
116 116
         };
117 117
         addMouseMotionListener(doScrollRectToVisible);
118
+
119
+        setScrollBarMax(document.getNumLines(), document.getNumLines());
118 120
     }
119 121
 
120 122
     /** {@inheritDoc} */

Loading…
Cancel
Save