forked from pool/frameworkintegration
39 lines
1.4 KiB
Diff
39 lines
1.4 KiB
Diff
From 2211793a69115cb5d0e61c40e9333d43a80fc0af Mon Sep 17 00:00:00 2001
|
|
From: David Edmundson <kde@davidedmundson.co.uk>
|
|
Date: Wed, 28 Jan 2015 18:25:17 +0100
|
|
Subject: [PATCH 7/8] Use activate on single click setting from QPlatformTheme
|
|
|
|
Our QPlatformTheme already provide a hint as to whether items should
|
|
activate on single click and it updates when the setting changes
|
|
|
|
QCommonStyle by default uses the QPlatformTheme
|
|
|
|
This removes duplicating the lookup and also means we now update the
|
|
setting if it changes at runtime
|
|
|
|
REVIEW: 122293
|
|
BUG: 343418
|
|
---
|
|
src/kstyle/kstyle.cpp | 5 -----
|
|
1 file changed, 5 deletions(-)
|
|
|
|
diff --git a/src/kstyle/kstyle.cpp b/src/kstyle/kstyle.cpp
|
|
index a6c898a49b4f7597493ee31ef9381b8a8f8887df..3b8c8f314224a8240ff50a48164e81d2ba315554 100644
|
|
--- a/src/kstyle/kstyle.cpp
|
|
+++ b/src/kstyle/kstyle.cpp
|
|
@@ -416,11 +416,6 @@ QIcon KStyle::standardIcon(StandardPixmap standardIcon, const QStyleOption */*op
|
|
int KStyle::styleHint(StyleHint hint, const QStyleOption *option, const QWidget *widget, QStyleHintReturn *returnData) const
|
|
{
|
|
switch (hint) {
|
|
- case SH_ItemView_ActivateItemOnSingleClick: {
|
|
- KConfigGroup g(KSharedConfig::openConfig(), "KDE");
|
|
- return g.readEntry("SingleClick", true);
|
|
- }
|
|
-
|
|
case SH_DialogButtonBox_ButtonsHaveIcons: {
|
|
// was KGlobalSettings::showIconsOnPushButtons() :
|
|
KConfigGroup g(KSharedConfig::openConfig(), "KDE");
|
|
--
|
|
2.2.2
|
|
|