-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
UI Selector to pop up at login one time per user #3271
base: master
Are you sure you want to change the base?
Conversation
Change-Id: I9659582febf36baa594cde53edecfff6b181b693
if(showUIPicker.equalsIgnoreCase("True")) { | ||
new UISettingsWizard(true).show(); | ||
} else if (AppInventorFeatures.showSplashScreen() && !isReadOnly) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that if they choose Classic then the sequence of dialogs is broken here, since otherwise this would either call createWelcomeDialog
or maybeShowNoProjectsDialog
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No matter what is selected, the page reloads at this point, and the user should see Welcome/NoProjects.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm. I'm not sure that's ideal if they are already in the desired UI configuration but I guess we can keep it for now and see how it goes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The reload is included in saveUserDesignSettings, which I'm using to save the flag that the user has been shown this dialog.
General items:
ant tests
passes on my machineFor all other changes:
master
master
as the baseWhat does this PR accomplish?
Description
Once for each user, pop up the User Interface selector with additional text to explain the new optional user interface. The user must select one UI or the other to proceed. This dialog pops up before the NoProjects dialog.
Resolves #3269