Author: titmuss
Date: Thu Feb 7 07:19:30 2008
New Revision: 1849
URL: http://svn.slimdevices.com?rev=1849&root=Jive&view=rev
Log:
[EMAIL PROTECTED] (orig r1843): titmuss | 2008-02-07 13:31:49 +0000
Bug: 6580
Description:
Fix the splash screen timer, this was running every 5 seconds and prevented
disabling screen updates.
Modified:
trunk/ (props changed)
trunk/jive/src/pkg/jive/share/jive/JiveMain.lua
Propchange: trunk/
------------------------------------------------------------------------------
--- svk:merge (original)
+++ svk:merge Thu Feb 7 07:19:30 2008
@@ -1,3 +1,3 @@
-bbe22326-0783-4b3a-ac2b-7ab96b24c8d9:/branches/7.0:1842
+bbe22326-0783-4b3a-ac2b-7ab96b24c8d9:/branches/7.0:1843
bbe22326-0783-4b3a-ac2b-7ab96b24c8d9:/branches/SN:1083
bbe22326-0783-4b3a-ac2b-7ab96b24c8d9:/branches/scrolling:1378
Modified: trunk/jive/src/pkg/jive/share/jive/JiveMain.lua
URL:
http://svn.slimdevices.com/trunk/jive/src/pkg/jive/share/jive/JiveMain.lua?rev=1849&root=Jive&r1=1848&r2=1849&view=diff
==============================================================================
--- trunk/jive/src/pkg/jive/share/jive/JiveMain.lua (original)
+++ trunk/jive/src/pkg/jive/share/jive/JiveMain.lua Thu Feb 7 07:19:30 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