lib/savio/InputBox.rb in savio-0.1.6 vs lib/savio/InputBox.rb in savio-0.1.7
- old
+ new
@@ -102,10 +102,10 @@
def tabMover()
if @@tabIndex >= @@inputBoxs.count
@@tabIndex = 0
end
- for i in @@tabIndex..@@inputBoxs.count do
+ for i in @@tabIndex..@@inputBoxs.count-1 do
if @@inputBoxs[i].enabled && @@inputBoxs[i].shown
@@tabIndex = i
deselect()
@@inputBoxs[i].select()
end