When using a slider in jivelite I have to press the down key to increase
the slider and the up key to decrease it which is counter intuitive, at
least for me :p
This functionality was introduce at commit
(6b880433e7a0bf73da66a19bc10d3c8c378269ee)
Switching the moveSlider parameters fixes the slider direction keys.
Code:
--------------------
--- a/share/jive/jive/ui/Slider.lua
+++ b/share/jive/jive/ui/Slider.lua
@@ -367,9 +367,9 @@ function _eventHandler(self, event)
local keycode = event:getKeycode()
if keycode == KEY_UP then
- self:_moveSlider(-1)
- elseif keycode == KEY_DOWN then
self:_moveSlider(1)
+ elseif keycode == KEY_DOWN then
+ self:_moveSlider(-1)
end
if keycode == KEY_FWD then
--------------------
Ralphy
*1*-Touch, *4*-Classics, *2*-Booms, *1*-Reverted UE Radio
'Squeezebox client builds'
(https://www.mediafire.com/folder/4q8dvq20iyz9e/Builds) 'donations'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=LL5P6365KQEXN&lc=CA&item_name=Squeezeslave¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted)
always appreciated.
------------------------------------------------------------------------
ralphy's Profile: http://forums.slimdevices.com/member.php?userid=3484
View this thread: http://forums.slimdevices.com/showthread.php?t=98156
_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix