From dd1c1dc40f9106c47c46f0c72dd2226cc6a0fbf4 Mon Sep 17 00:00:00 2001 From: David Capello Date: Thu, 21 May 2015 12:55:51 -0300 Subject: [PATCH] Fix bug firing Option::AfterChange signal with previous value --- src/app/pref/option.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pref/option.h b/src/app/pref/option.h index 7a6c251e7..af753ad2e 100644 --- a/src/app/pref/option.h +++ b/src/app/pref/option.h @@ -66,7 +66,7 @@ namespace app { m_value = newValue; m_dirty = true; - AfterChange(oldValue); + AfterChange(newValue); if (m_section) m_section->AfterChange();