Skip to content
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

Fix the sub-workflow user input handling #89

Merged
merged 2 commits into from
Nov 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions package/yast2-add-on.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Nov 21 12:36:10 UTC 2019 - David Diaz <dgonzalez@suse.com>

- Handle correctly the user input when going back (bsc#1156528)
- 4.1.14

-------------------------------------------------------------------
Mon Jul 1 07:40:05 UTC 2019 - David Diaz <dgonzalez@suse.com>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-add-on.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-add-on
Version: 4.1.13
Version: 4.1.14
Release: 0
Summary: YaST2 - Add-On media installation code
License: GPL-2.0-only
Expand Down
3 changes: 2 additions & 1 deletion src/include/add-on/add-on-workflow.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1025,9 +1025,10 @@ def RunAddOnMainDialog(enable_back, enable_next, enable_abort, back_button, next
Pkg.SourceReleaseAll

Wizard.SetTitleIcon("yast-addon")

ret2 = RunWizard()

break if ret2 == :back
ret = ret2 if ret2 == :back
return :abort if ret2 == :abort

log.info "Subworkflow result: ret2: #{ret2}"
Expand Down