| Author |
Removing graphical trash from JLayeredPane
|
Andrew Ryaskov
Greenhorn
Joined: Dec 15, 2011
Posts: 1
|
|
Hi everybody!
Help me to remove this graphical artifact from JLayeredPane:
There is a simple app with drawing panel(Scene) inherited from JLayeredPane and graphical objects on it - inherited from JComponent with overridden paintComponent():
If zoom == 1.0 ( g.scale(1.0, 1.0) in Scene's paint() method ) it's OK - moving objects in scene dont lead to graphical artifacts:
But if I set zoom greater or lower than 1.0, I've got some bugs while moving objects by mouse:
How to remove this "trace"?
Thank you!
|
 |
Rob Camick
Ranch Hand
Joined: Jun 13, 2009
Posts: 1787
|
|
A JComponent doesn't repaint its background. So I'm guessing you need to add code to do this in the paintComponent() method. Something like:
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
Or extend JPanel instead of JComponent; don't forget to call super.paintComponent(g) as the first statement in the overridden paintComponent method, or you'll get the same result.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: Removing graphical trash from JLayeredPane
|
|
|