Results 65 comments of Jarek Sacha

Looks that I closed this issue. It was not intentional. Wrong button.

There may be unmanaged dependencies that are "inherited" from other modules within the same SBT project. I come across this scenario when working with a large project with about 22...

A workaround here is to define `age` as an `ObjectProperty[Int]`: ``` scala val age = new ObjectProperty[Int](this, "age", _age) ```

_From [jpsacha](https://code.google.com/u/jpsacha/) on August 26, 2013 19:04:41_ **Owner:** ---

_From [[email protected]](https://code.google.com/u/[email protected]/) on March 19, 2014 12:18:43_ I've fixed some classes (scalafx.scene.shape.CullFace & scalafx.scene.shape.DrawMode in SFX-8 and scalafx.scene.paint.Color in both default and SFX-8), but there are many others. The following...

_From [jpsacha](https://code.google.com/u/jpsacha/) on January 31, 2013 21:13:43_ **Labels:** Milestone-Release1.0

_From [jpsacha](https://code.google.com/u/jpsacha/) on March 07, 2013 19:15:55_ This issue could not be easily and completely fixed without significant changes to ScalaFX code base. To make it easier to deal with...

I see, there is an inconsistency in interpreting `value`. The same problem is likely in other Properties. A work around is to use the `()` notation: ```scala property() += 1...