From 26355be54d7e7aa1c8e6a7adcb6bb9de68700dd9 Mon Sep 17 00:00:00 2001 From: Akihito Izawa Date: Thu, 12 Apr 2018 15:52:18 +0900 Subject: QStyleHints: emit correct signal when calling setMouseQuickSelectionThreshold Change-Id: Ieb76ecc406c25ca11a108775ebd46a8e597401b5 Reviewed-by: Andy Shaw Reviewed-by: J-P Nurmi --- src/gui/kernel/qstylehints.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/kernel/qstylehints.cpp b/src/gui/kernel/qstylehints.cpp index b2d968c046..48060a2c37 100644 --- a/src/gui/kernel/qstylehints.cpp +++ b/src/gui/kernel/qstylehints.cpp @@ -551,7 +551,7 @@ void QStyleHints::setMouseQuickSelectionThreshold(int threshold) if (d->m_mouseQuickSelectionThreshold == threshold) return; d->m_mouseQuickSelectionThreshold = threshold; - emit mouseDoubleClickIntervalChanged(threshold); + emit mouseQuickSelectionThresholdChanged(threshold); } /*! -- cgit v1.2.3