Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfixes in TextField and UniformContainer #55

Merged
merged 2 commits into from Mar 27, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -4764,7 +4764,6 @@ protected void defocus(Style originalStyle)
//#if tmp.useNokiaInput
if (this.nokiaTextEditor != null) {
this.nokiaTextEditor.setFocus(false);
this.nokiaTextEditor.setParent(null);

javax.microedition.lcdui.Canvas objs = (javax.microedition.lcdui.Canvas) javax.microedition.lcdui.Display.getDisplay(Display.getInstance().getMidlet()).getCurrent();
//#if polish.NokiaUiApiVersion >= 1.1b
Expand Down
Expand Up @@ -182,7 +182,7 @@ else if (item.isLayoutVerticalCenter())
for (int itemIndex=startIndex + 1; itemIndex < startIndex + numberOfRealItems; itemIndex++) {
item = this.itemSource.createItem(itemIndex);
item.parent = this;
item.getItemHeight(firstLineWidth, availWidth, availHeight);
rowHeight = item.getItemHeight(firstLineWidth, availWidth, availHeight);
item.relativeY = itemIndex * rowHeight;
this.itemsList.add(item);
}
Expand Down