Reputation: 177
Everything was fine, when my cn1 projects automatically downloaded new libs on 21 May 2016 at 10 : 00 the titles text disappeared. This degraded my apps.
The title show on the GUI builder but on the simulator and IOS device nothing shows on the title bar.
can someone help.
on GUI Builder :
on Simulator and device :
This was just fine before. How can i remove the last automatic update ?
Upvotes: 1
Views: 141
Reputation: 52760
We made some changes to back button behavior in the Toolbar with the latest update which might have triggered this. Try overriding this in the state machine and see if it helps:
protected void setBackCommand(Form f, Command backCommand) {
if(shouldAddBackCommandToMenu()) {
f.addCommand(backCommand, f.getCommandCount());
}
f.setBackCommand(backCommand);
}
Upvotes: 2