Mercurial > pub > ImplabNet
diff Implab.Fx/Animation.cs @ 6:dfa21d507bc5
*refactoring: Promise.Then now returns a new chained promise
*fixed bug with animations when multiple events fired simultaneously
author | cin |
---|---|
date | Mon, 21 Oct 2013 02:34:31 +0400 |
parents | 381095ad0a69 |
children |
line wrap: on
line diff
--- a/Implab.Fx/Animation.cs Tue Sep 24 03:31:24 2013 +0400 +++ b/Implab.Fx/Animation.cs Mon Oct 21 02:34:31 2013 +0400 @@ -51,7 +51,7 @@ { var timer = new Timer(m_delay); - timer.AutoReset = true; + timer.AutoReset = false; timer.SynchronizingObject = m_syncronizationObject; timer.Elapsed += new ElapsedEventHandler(timer_Elapsed);