Skip to content

Commit

Permalink
Merge pull request #38 from jsuchome/master
Browse files Browse the repository at this point in the history
- do not try to save settings when user did not change them
  • Loading branch information
jsuchome committed Apr 23, 2014
2 parents b86928a + 035a79c commit 797b45c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions package/yast2-country.changes
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Apr 23 08:59:09 CEST 2014 - jsuchome@suse.cz

- do not try to save settings when user did not change them
(bnc#850571)
- 3.1.9

-------------------------------------------------------------------
Thu Apr 10 09:41:15 UTC 2014 - mvidner@suse.com

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


Name: yast2-country
Version: 3.1.8
Version: 3.1.9
Release: 0

BuildRoot: %{_tmppath}/%{name}-%{version}-build
Expand Down
2 changes: 1 addition & 1 deletion timezone/src/include/timezone/dialogs.rb
Expand Up @@ -973,7 +973,7 @@ def TimezoneDialog(args)
changed_time = true if timezone != timezone_old
timezone_old = timezone
hwclock_s_old = @hwclock_s
SetTimezone(@hwclock_s, timezone, ret == :next, changed_time)
SetTimezone(@hwclock_s, timezone, ret == :next && (changed_time || @hwclock_s != @hwclock_s_initial), changed_time)
end

if ret == :next
Expand Down

0 comments on commit 797b45c

Please sign in to comment.