Ignore:
Timestamp:
04/17/19 11:30:18 (5 years ago)
Author:
bln4
Message:

Added the ability to use strings as item tags in .exp files. In order to maintain back compatibility and to maximise efficiency, these strings must start with a underscore character.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/auth/Actions.java

    r1320 r1321  
    392392                String message = "Creating new user account...";
    393393                int progress = 0;
    394                 int step = 20;
     394                int step = 16;
    395395
    396396                // Extract user details
     
    519519                Path destinationFile = destinationDirectory.resolve(AuthenticatorBrowser.CREDENTIALS_FRAME + ExpReader.EXTENTION);
    520520                FrameIO.migrateFrame(credentialsFrame, destinationFile);
    521                
    522                 MessageBay.displayMessage(message + "Creating Individual Space.");
     521
     522                try {
     523                        progressBar.UpdateMessage(message + "Creating Individual Space.", progress += step);
     524                } catch (Exception e) {
     525                        e.printStackTrace();
     526                }
    523527                DisplayController.refreshBayArea();
    524528               
     
    543547               
    544548                try {
    545                         progressBar.UpdateMessage(message + "Done.", progress += step);
     549                        progressBar.UpdateMessage(message + "Done.", 100);
    546550                } catch (Exception e) {
    547551                        e.printStackTrace();
Note: See TracChangeset for help on using the changeset viewer.