Hi Audrius,

Am Donnerstag, den 16.02.2006, 13:49 +0100 schrieb Audrius Meskauskas:
> Now the bottom "close" button disappears in the Swing Demo after any 
> attempt to expand a tree node or resize the table column.

It seems that we have problems with the blit scroll mode in JViewport. I
changed it to default to the backingstore scroll mode like it has been
before. I'll look at the JViewport a little more and change it back when
it is more stable.

2006-02-16  Roman Kennke  <[EMAIL PROTECTED]>

        * javax/swing/JViewport.java
        (static_initializer): Set default scrollMode to backingstore.

Roman

Index: javax/swing/JViewport.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/JViewport.java,v
retrieving revision 1.42
diff -u -r1.42 JViewport.java
--- javax/swing/JViewport.java	14 Feb 2006 22:15:23 -0000	1.42
+++ javax/swing/JViewport.java	16 Feb 2006 13:29:34 -0000
@@ -265,7 +265,7 @@
   {
     String scrollModeProp =
       SystemProperties.getProperty("gnu.javax.swing.JViewport.scrollMode",
-                         "BLIT");
+                         "BACKINGSTORE");
     if (scrollModeProp.equalsIgnoreCase("simple"))
       defaultScrollMode = SIMPLE_SCROLL_MODE;
     else if (scrollModeProp.equalsIgnoreCase("backingstore"))

Attachment: signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil

Reply via email to