| 959 | |
| 960 | |
| 961 | class EditorAttributeInputInt(EditorAttributeInputGeneric): |
| 962 | def on_attribute_changed(self, emitter, value): |
| 963 | super(EditorAttributeInputInt, self).on_attribute_changed( |
| 964 | self, int(float(value))) |
| 965 | |
| 966 | |
| 967 | class EditorAttributeInputCssSize(EditorAttributeInputBase): |