Browse Source

fixes #1185 enabled captions and other component generals for tabsheet

svn changeset:4022/svn branch:trunk
tags/6.7.0.beta1
Matti Tahvonen 16 years ago
parent
commit
6f8ef78a85
1 changed files with 2 additions and 3 deletions
  1. 2
    3
      src/com/itmill/toolkit/terminal/gwt/client/ui/ITabsheetBase.java

+ 2
- 3
src/com/itmill/toolkit/terminal/gwt/client/ui/ITabsheetBase.java View 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;
}


Loading…
Cancel
Save