diff options
author | K. \"pestophagous\" Heller <pestophagous@gmail.com> | 2015-11-15 20:55:04 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-15 22:22:34 -0800 |
commit | f44c98d9c5fc6b87087d454aab2c23da3072376b (patch) | |
tree | a1f05b8fd74982e6e81ee2682a57fcf5a7f7d697 /desktop-widgets/preferences | |
parent | f5dbc3b44d56124dd8b1eaaaefd4e019fbd7db71 (diff) | |
download | subsurface-f44c98d9c5fc6b87087d454aab2c23da3072376b.tar.gz |
Restore proper spin-box/slider behavior for animation setting.
In 4.5 the signal-to-slot connections between the QSlider
and the QSpinBox were bidirectional. That setup is still
desirable; it must have been broken accidentally during
preferences refactorings.
Signed-off-by: K. Heller <pestophagous@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/preferences')
-rw-r--r-- | desktop-widgets/preferences/preferences_defaults.ui | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/desktop-widgets/preferences/preferences_defaults.ui b/desktop-widgets/preferences/preferences_defaults.ui index 627d22cce..1a54d7b0a 100644 --- a/desktop-widgets/preferences/preferences_defaults.ui +++ b/desktop-widgets/preferences/preferences_defaults.ui @@ -280,5 +280,21 @@ </hint> </hints> </connection> + <connection> + <sender>velocitySpinBox</sender> + <signal>valueChanged(int)</signal> + <receiver>velocitySlider</receiver> + <slot>setValue(int)</slot> + <hints> + <hint type="sourcelabel"> + <x>547</x> + <y>274</y> + </hint> + <hint type="destinationlabel"> + <x>482</x> + <y>276</y> + </hint> + </hints> + </connection> </connections> </ui> |