If I have this in my css file:
.xcalendar-picker
{
-fx-skin: "org.tbee.javafx.scene.control.XCalendarPickerControlSkin";
}
I get this on the console:
WARNING: com.sun.javafx.css.parser.CSSParser parse Expected LBRACE at file:/C:/Documents%20and%20Settings/User/My%20Documents/tbeefx/_build/org/tbee/javafx/scene/control/XCalendarPicker.css[2,2]
If I make one change, this goes away:
.xcalendar-picker {
-fx-skin: "org.tbee.javafx.scene.control.XCalendarPickerControlSkin";
}
I do not believe code style enforing should be that strict.
.xcalendar-picker
{
-fx-skin: "org.tbee.javafx.scene.control.XCalendarPickerControlSkin";
}
I get this on the console:
WARNING: com.sun.javafx.css.parser.CSSParser parse Expected LBRACE at file:/C:/Documents%20and%20Settings/User/My%20Documents/tbeefx/_build/org/tbee/javafx/scene/control/XCalendarPicker.css[2,2]
If I make one change, this goes away:
.xcalendar-picker {
-fx-skin: "org.tbee.javafx.scene.control.XCalendarPickerControlSkin";
}
I do not believe code style enforing should be that strict.