Author: bklaas
Date: Mon Feb  8 13:36:23 2010
New Revision: 8465

URL: http://svn.slimdevices.com/jive?rev=8465&view=rev
Log:
Bug: n/a
Description: don't return false if no max has been given

Modified:
    7.5/trunk/squeezeplay/src/squeezeplay/share/jive/ui/Textinput.lua

Modified: 7.5/trunk/squeezeplay/src/squeezeplay/share/jive/ui/Textinput.lua
URL: 
http://svn.slimdevices.com/jive/7.5/trunk/squeezeplay/src/squeezeplay/share/jive/ui/Textinput.lua?rev=8465&r1=8464&r2=8465&view=diff
==============================================================================
--- 7.5/trunk/squeezeplay/src/squeezeplay/share/jive/ui/Textinput.lua (original)
+++ 7.5/trunk/squeezeplay/src/squeezeplay/share/jive/ui/Textinput.lua Mon Feb  
8 13:36:23 2010
@@ -986,7 +986,7 @@
 
                __index = {
                        setValue = function(obj, str)
-                               if #str > max then
+                               if max and #str > max then
                                        return false
                                end
 

_______________________________________________
Jive-checkins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/jive-checkins

Reply via email to