Closed GoogleCodeExporter closed 8 years ago
Original comment by paul.beu...@gmail.com
on 5 Jan 2011 at 7:02
Actually it's all hosts. the problem occur on a subsequent wizard invocation
if the previous invocation ended in a good state with neither of jQuery Mobile
or Sencha selected.
It seems that Eclipse needs to have enough buffer space already allocated for
the with strings to show up without a redraw. Making the else clause in
validate page add spaces addresses the problem -
if (contentsVisible) {
String withString;
if (mJqmDialog.jqmChecked()) {
withString = "with jQuery Mobile";
} else if (mSenchaDialog.senchaChecked()) {
withString = "with Sencha Touch";
} else {
// needs to be seeded with blanks so that there's space when it needs to appear (Issue 3)
withString = " ";
}
The fix will go into 1.1.1
Original comment by paul.beu...@gmail.com
on 10 Jan 2011 at 10:20
Original issue reported on code.google.com by
paul.beu...@gmail.com
on 5 Jan 2011 at 6:53