From bb6db98fcff0293e927f7338f0d9324c7909bd04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Tue, 26 Mar 2019 22:52:58 +0100 Subject: [PATCH] use dValue, the value passed to the slot --- src/widget/wkey.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget/wkey.cpp b/src/widget/wkey.cpp index b45b0721e99..5bf1ac13cbd 100644 --- a/src/widget/wkey.cpp +++ b/src/widget/wkey.cpp @@ -57,5 +57,5 @@ void WKey::setCents() { } void WKey::keyNotationChanged(double dValue) { - setValue(m_dOldValue); + setValue(dValue); }