Searched refs:waitingForRepaint (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJViewport.java224 // waitingForRepaint is set to true and a timer is started. When
225 // the timer fires if waitingForRepaint is true, repaint is invoked.
226 // In the mean time, if the view is asked to scroll and waitingForRepaint
228 // of scrolling will happen, which will reset waitingForRepaint.
229 // waitingForRepaint is set to false in paint when the clip rect is
248 private transient boolean waitingForRepaint; field in class:JViewport
704 waitingForRepaint = true;
717 waitingForRepaint = false;
720 else if (waitingForRepaint) {
721 // Need a complete repaint before resetting waitingForRepaint
[all...]

Completed in 31 milliseconds