CC-3566: Preferences->"Fade In" is not respected when Show starts
- millisecond value of fade was sent wrong from php side. - crossfade() call was removed and it was causing fade in/out not working.
This commit is contained in:
parent
bc6e911673
commit
f82aef2a85
4 changed files with 13 additions and 2 deletions
|
@ -351,7 +351,8 @@ class Application_Model_Schedule {
|
|||
if (strpos($t[2], ".")) {
|
||||
$secParts = explode(".", $t[2]);
|
||||
$millisecs = $secParts[1];
|
||||
$millisecs = substr($millisecs, 0, 3);
|
||||
$millisecs = str_pad(substr($millisecs, 0, 3),3, '0');
|
||||
Logging::log("mili:".print_r($millisecs,true));
|
||||
$millisecs = intval($millisecs);
|
||||
$seconds = intval($secParts[0]);
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue