Author: titmuss
Date: Thu Feb  7 05:31:49 2008
New Revision: 1843

URL: http://svn.slimdevices.com?rev=1843&root=Jive&view=rev
Log:
Bug: 6580
Description:

Fix the splash screen timer, this was running every 5 seconds and prevented 
disabling screen updates.


Modified:
    branches/7.0/jive/src/pkg/jive/share/jive/JiveMain.lua

Modified: branches/7.0/jive/src/pkg/jive/share/jive/JiveMain.lua
URL: 
http://svn.slimdevices.com/branches/7.0/jive/src/pkg/jive/share/jive/JiveMain.lua?rev=1843&root=Jive&r1=1842&r2=1843&view=diff
==============================================================================
--- branches/7.0/jive/src/pkg/jive/share/jive/JiveMain.lua (original)
+++ branches/7.0/jive/src/pkg/jive/share/jive/JiveMain.lua Thu Feb  7 05:31:49 
2008
@@ -180,10 +180,12 @@
                                                                
Framework:setUpdateScreen(true)
                                                                return 
EVENT_UNUSED
                                                            end)
-       local splashTimer = Timer(5000 - (os.time() - initTime), function()
-                               Framework:setUpdateScreen(true)
-                               Framework:removeListener(splashHandler)
-                           end)
+       local splashTimer = Timer(5000 - (os.time() - initTime),
+               function()
+                       Framework:setUpdateScreen(true)
+                       Framework:removeListener(splashHandler)
+               end,
+               true)
        splashTimer:start()
 
        -- run event loop

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

Reply via email to