]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixes #1185 enabled captions and other component generals for tabsheet
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 11 Mar 2008 09:42:59 +0000 (09:42 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 11 Mar 2008 09:42:59 +0000 (09:42 +0000)
svn changeset:4022/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/ui/ITabsheetBase.java

index a045358b2c0ccb8e3b98669eca4d4c824323aff1..044daf7162904de1db2b850883bce612f16c600d 100644 (file)
@@ -25,9 +25,8 @@ abstract class ITabsheetBase extends FlowPanel implements Paintable {
 
     public void updateFromUIDL(UIDL uidl, ApplicationConnection client) {
 
-        // Ensure correct implementation and don't let ApplicationConnection
-        // handle component caption
-        if (client.updateComponent(this, uidl, false)) {
+        // Ensure correct implementation
+        if (client.updateComponent(this, uidl, true)) {
             return;
         }