CC-6118: Playlist crossfade panel needs restyling
* Fixed it as much as possible. Unfortunately, the milliseconds are dropped by Propel so we should probably restrict the fade time to whole seconds....
This commit is contained in:
parent
1db1af3f2e
commit
de322171df
5 changed files with 31 additions and 18 deletions
|
@ -69,7 +69,9 @@ class CcPlaylistcontents extends BaseCcPlaylistcontents {
|
|||
}
|
||||
$this->modifiedColumns[] = CcPlaylistcontentsPeer::FADEIN;
|
||||
$this->save();
|
||||
|
||||
|
||||
//FIXME(XXX): Propel silently drops the milliseconds from our fadein time. :(
|
||||
|
||||
return $this;
|
||||
} // setDbFadein()
|
||||
|
||||
|
@ -107,6 +109,8 @@ class CcPlaylistcontents extends BaseCcPlaylistcontents {
|
|||
}
|
||||
$this->modifiedColumns[] = CcPlaylistcontentsPeer::FADEOUT;
|
||||
$this->save();
|
||||
|
||||
//FIXME(XXX): Propel silently drops the milliseconds from our fadeout time. :(
|
||||
|
||||
return $this;
|
||||
} // setDbFadeout()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue