Skip to content

Commit

Permalink
Issue #17 - command labels shortened and priorities alligned
Browse files Browse the repository at this point in the history
  • Loading branch information
kwart committed Jul 1, 2013
1 parent e9b82d2 commit 4894aa5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/org/jboss/totp/TOTPMIDlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,19 +107,19 @@ public class TOTPMIDlet extends MIDlet implements CommandListener {
// GUI components
// main screen
private Command cmdExit = new Command("Exit", Command.EXIT, 1);
private Command cmdOptions = new Command("Options", Command.SCREEN, 1);
private Command cmdProfiles = new Command("Profiles", Command.SCREEN, 1);
private Command cmdProfiles = new Command("Profiles", Command.SCREEN, 2);
private Command cmdOptions = new Command("Options", Command.SCREEN, 3);
// main+options screen
private Command cmdGenerator = new Command("Key generator", Command.SCREEN, 1);
private Command cmdGenerator = new Command("Key generator", Command.SCREEN, 4);
// options screen
private Command cmdOK = new Command("OK", Command.OK, 1);
private Command cmdReset = new Command("Default values", Command.SCREEN, 3);
// keyGenerator screen
private Command cmdNewKey = new Command("New key", Command.SCREEN, 1);
private Command cmdGeneratorOK = new Command("OK", Command.OK, 1);
// profiles screen
private Command cmdAddProfile = new Command("Add profile", Command.SCREEN, 1);
private Command cmdRemoveProfile = new Command("Remove profile", Command.SCREEN, 1);
private Command cmdAddProfile = new Command("Add", Command.SCREEN, 1);
private Command cmdRemoveProfile = new Command("Remove", Command.SCREEN, 2);

private final StringItem siKeyHex = new StringItem("HEX", null);
private final StringItem siKeyBase32 = new StringItem("Base32", null);
Expand Down

0 comments on commit 4894aa5

Please sign in to comment.