GNOME Bugzilla – Bug 664690
wizard: Skip to 'Preparation' when URI is passed
Last modified: 2016-03-31 13:54:11 UTC
If a URI has already been passed, we don't need to stay on 'Source' page. Later when we have reliable-enough means to detect a purely live media, we can entirely skip 'Setup' page as well.
Created attachment 202042 [details] [review] wizard: Skip to 'Preparation' when URI is passed Skip wizard directly to 'Preparation' step when URI is passed through commandline argument.
Review of attachment 202042 [details] [review]: ::: src/wizard.vala @@ +445,3 @@ wizard_source.page = SourcePage.URL; wizard_source.uri = app.uri; + page = WizardPage.PREPARATION; looks fine, I guess the "page = WizardPage.SOURCE" above can be removed, but I didn't check carefully
(In reply to comment #2) > Review of attachment 202042 [details] [review]: > > ::: src/wizard.vala > @@ +445,3 @@ > wizard_source.page = SourcePage.URL; > wizard_source.uri = app.uri; > + page = WizardPage.PREPARATION; > > looks fine, I guess the "page = WizardPage.SOURCE" above can be removed, but I > didn't check carefully Thats what I did as first thing but somehow that means getting stuck at 'Preparation' stage.
Attachment 202042 [details] pushed as 89750ba - wizard: Skip to 'Preparation' when URI is passed