diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-12-07 14:19:38 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-12-07 14:19:38 +0000 |
commit | f0eb79540497e0d3ec5fbbe56119596effa4302c (patch) | |
tree | 266b68a229ead897069a6858d9d62faafea298fc /src | |
parent | a91f7ddca1dbe0b039859f6581e750df9a96e898 (diff) | |
download | vaadin-framework-f0eb79540497e0d3ec5fbbe56119596effa4302c.tar.gz vaadin-framework-f0eb79540497e0d3ec5fbbe56119596effa4302c.zip |
Fixed typo
svn changeset:16367/svn branch:6.5
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/terminal/gwt/client/ui/VTwinColSelect.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ui/VTwinColSelect.java b/src/com/vaadin/terminal/gwt/client/ui/VTwinColSelect.java index 8bee09e9ac..eecb2aae85 100644 --- a/src/com/vaadin/terminal/gwt/client/ui/VTwinColSelect.java +++ b/src/com/vaadin/terminal/gwt/client/ui/VTwinColSelect.java @@ -454,7 +454,7 @@ public class VTwinColSelect extends VOptionGroupBase implements KeyDownHandler, // Compensating for now with a guess.
int buttonsExtraWidth = Util.measureHorizontalPaddingAndBorder(
buttons.getElement(), 0);
- int buttonWidth = Util.getRequiredWidth(buttons) + +buttonsExtraWidth;
+ int buttonWidth = Util.getRequiredWidth(buttons) + buttonsExtraWidth;
int totalWidth = getOffsetWidth();
int spaceForSelect = (totalWidth - buttonWidth) / 2;
|