diff options
author | Francois Andriot <francois.andriot@free.fr> | 2012-06-04 23:05:28 +0200 |
---|---|---|
committer | Francois Andriot <francois.andriot@free.fr> | 2012-06-04 23:05:28 +0200 |
commit | a8d78224c6ea9b943357902276de7a513d0fbd8d (patch) | |
tree | b1fc22b372792bf2cd2b3bd9add09fb3df8e71ff /redhat/kdebase/kdebase-3.5.13-fix_khtml_smooth_scrolling.patch | |
parent | 7f3d4fcab8d85cda8766150784e9133f61110019 (diff) | |
download | tde-packaging-a8d78224c6ea9b943357902276de7a513d0fbd8d.tar.gz tde-packaging-a8d78224c6ea9b943357902276de7a513d0fbd8d.zip |
RHEL/Fedora: various updates
Diffstat (limited to 'redhat/kdebase/kdebase-3.5.13-fix_khtml_smooth_scrolling.patch')
-rw-r--r-- | redhat/kdebase/kdebase-3.5.13-fix_khtml_smooth_scrolling.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/redhat/kdebase/kdebase-3.5.13-fix_khtml_smooth_scrolling.patch b/redhat/kdebase/kdebase-3.5.13-fix_khtml_smooth_scrolling.patch new file mode 100644 index 000000000..99256971b --- /dev/null +++ b/redhat/kdebase/kdebase-3.5.13-fix_khtml_smooth_scrolling.patch @@ -0,0 +1,38 @@ +commit b45b4bd730da3196a4658773f7eef46e004a39d6 +Author: Timothy Pearson <kb9vqf@pearsoncomputing.net> +Date: 1337063762 -0500 + + Fix KHTML smooth scrolling control center option + This closes Bug 1001 + Thanks to Roman Savochenko for the patch! + +diff --git a/kcontrol/konqhtml/htmlopts.cpp b/kcontrol/konqhtml/htmlopts.cpp +index 0b81421..9e199cb 100644 +--- a/kcontrol/konqhtml/htmlopts.cpp ++++ b/kcontrol/konqhtml/htmlopts.cpp +@@ -299,7 +299,7 @@ void KMiscHTMLOptions::load( bool useDefaults ) + KConfig kdeglobals("kdeglobals", true, false); + kdeglobals.setReadDefaults( useDefaults ); + kdeglobals.setGroup("KDE"); +- bool smoothScrolling = kdeglobals.readBoolEntry("SmoothScroll", DEFAULT_SMOOTHSCROLL); ++ bool smoothScrolling = kdeglobals.readBoolEntry("SmoothScrolling", DEFAULT_SMOOTHSCROLL); + if (smoothScrolling) + m_pSmoothScrollingCombo->setCurrentItem( SmoothScrollingAlways ); + else +@@ -374,13 +374,13 @@ void KMiscHTMLOptions::save() + switch(m_pSmoothScrollingCombo->currentItem()) + { + case SmoothScrollingAlways: +- kdeglobals.writeEntry( "SmoothScroll", true ); ++ kdeglobals.writeEntry( "SmoothScrolling", true ); + break; + case SmoothScrollingNever: +- kdeglobals.writeEntry( "SmoothScroll", false ); ++ kdeglobals.writeEntry( "SmoothScrolling", false ); + break; + // case SmoothScrollingWhenEfficient: +- // kdeglobals.writeEntry( "SmoothScroll", somethingelse ); ++ // kdeglobals.writeEntry( "SmoothScrolling", somethingelse ); + // break; + } + kdeglobals.sync(); |