Skip to content

Commit

Permalink
Merge pull request #37 from yast/fix_disabled_errors_popup
Browse files Browse the repository at this point in the history
Fix disabled errors popup
  • Loading branch information
jreidinger committed Aug 24, 2016
2 parents f00206d + 051b36e commit 3601ef6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions package/yast2-firstboot.changes
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Aug 24 11:22:55 UTC 2016 - jreidinger@suse.com

- fix not showing errors as popup in firstboot (bnc#994892)
- 3.1.17

-------------------------------------------------------------------
Fri Aug 12 14:45:25 UTC 2016 - ancor@suse.com

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-firstboot.spec
Expand Up @@ -17,7 +17,7 @@


Name: yast2-firstboot
Version: 3.1.16
Version: 3.1.17
Release: 0

BuildRoot: %{_tmppath}/%{name}-%{version}-build
Expand Down
4 changes: 3 additions & 1 deletion src/lib/y2firstboot/clients/user.rb
Expand Up @@ -24,6 +24,7 @@
require "users/dialogs/inst_user_first"
Yast.import "Users"
Yast.import "UsersSimple"
Yast.import "Progress"

module Y2Firstboot
module Clients
Expand All @@ -42,8 +43,9 @@ def run
# Create user
if setup_all_users
# Do not mess with the progress indicator
Yast::Users.SetGUI(false)
orig = Yast::Progress.set(false)
Yast::Users.Write
Yast::Progress.set(orig)
end
end
dialog_result
Expand Down

0 comments on commit 3601ef6

Please sign in to comment.