JScrollPane scrollbar jumps down on JEditorPane.setText()

前端 未结 2 903
青春惊慌失措
青春惊慌失措 2021-01-15 14:47

Every time (except first time) I set text in JEditorPane scrollbar jumps to the bottom of JEditorPane. Is there any way to avoid this? One way that I tried is to use setCare

2条回答
  •  爱一瞬间的悲伤
    2021-01-15 15:16

    The following solved the problem for me, after 50 minutes of despair:

    JEditorPane.grabFocus();
    JEditorPane.setCaretPosition(20);
    

提交回复
热议问题