I have a TextArea inside JScrollPane inside standard JPanel.
JPanel panelMain = new JPanel();
panelMain.setBorder(titledBorder1);
panelMain.setBounds(new Rectangle(2, 5, 970, 700));
panelMain.setLayout(null);
JTextArea fieldBody = new JTextArea();
JScrollPane fieldBodyScrollPane = new JScrollPane(fieldBody);
fieldBodyScrollPane.setBounds(70, 140, 790, 500);
panelMain.add(fieldBodyScrollPane);
When I type enough text in a single row the horizontal knob appears - so far good. But when I start moving the knob left and right, the text gets blured (see image). Interestingly, nothing weird happens when I move the textarea up and down.
I use Ubuntu 12.04 with Unity. This graphic artifact never appeared to me before. Any hints what could be the problem?
fieldBodyScrollPane.setBounds(70, 140, 790, 500);
Is likely indicative of the root of the problem. Use layouts. 2) For better help sooner, post an SSCCE. – TobitmyJViewPort.setScrollMode(JViewport.BLIT_SCROLL_MODE);
and/ormyJViewPort.setScrollMode(JViewport.BACKINGSTORE_SCROLL_MODE);
and/ormyJViewPort.setScrollMode(JViewport.SIMPLE_SCROLL_MODE);
and/or ??? – Hagfish