diff options
author | Jonathan Thomas <echidnaman@kubuntu.org> | 2010-05-26 12:42:25 -0400 |
---|---|---|
committer | Jonathan Thomas <echidnaman@kubuntu.org> | 2010-05-26 12:42:25 -0400 |
commit | 0b735b9d5d5329c649818a6ba131755ef5c64c07 (patch) | |
tree | b29a90531314a78bacea0db720f3a7e4e4164c9d /src/settings | |
parent | Merge branch 'master' of gitorious.org:rekonq/mainline (diff) | |
download | rekonq-0b735b9d5d5329c649818a6ba131755ef5c64c07.tar.xz |
Change the autoscroll checkbox to control whether or not the auto scroll feature is enabled,
rather than wether or not it is disabled.
This solves a HIG issue, since checkboxes are always supposed to enable an option when checked,
rather than to disable an option when checked: http://techbase.kde.org/Projects/Usability/HIG/Check_Box
Diffstat (limited to 'src/settings')
-rw-r--r-- | src/settings/settings_appearance.ui | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/settings/settings_appearance.ui b/src/settings/settings_appearance.ui index 92d15cc6..e0da6970 100644 --- a/src/settings/settings_appearance.ui +++ b/src/settings/settings_appearance.ui @@ -186,12 +186,15 @@ </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> - <widget class="QCheckBox" name="kcfg_disableAutoScroll"> + <widget class="QCheckBox" name="kcfg_autoScroll"> <property name="toolTip"> - <string>Disable automatic scrolling on middle click in a web page</string> + <string>Toggle automatic scrolling on middle click in a web page</string> </property> <property name="text"> - <string>Disable auto scrolling</string> + <string>Auto-scroll on middle-click</string> + </property> + <property name="checked"> + <bool>true</bool> </property> </widget> </item> |