https://bugs.documentfoundation.org/show_bug.cgi?id=156707
Justin L <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|7.6.0.2 rc |7.5 all versions --- Comment #11 from Justin L <[email protected]> --- attachment 196982: textboxControl3D.odt: one flat and one 3d text box form control created in LO 7.5.9 The difference in the ODS is that the flat control has fo:border="solid #000000" while the 3D control simply has fo:border="#000000". [I don't see any mention of what fo:border values mean in the documentation.] There is no use of form:visual-effect (which accepts flat or 3d) - this is only used for checkboxes/radio-boxes. comment 5's commit was replaced by 7.6/7.5.4 for tdf#152974 revert change to ORichTextModel::getPropertyDefaultByHandle Apparently, any of these strings should be valid in order to chose flat (2) or 3d (1) or nothing (0) for the property ControlBorder const SvXMLEnumMapEntry<sal_uInt16> aBorderTypeMap[] = { XML_NONE, 0 }, { XML_HIDDEN, 0 }, { XML_SOLID, 2 }, { XML_DOUBLE, 2 }, { XML_DOTTED, 2 }, { XML_DASHED, 2 }, { XML_GROOVE, 1 }, { XML_RIDGE, 1 }, { XML_INSET, 1 }, { XML_OUTSET, 1 }, The handling code is in xmloff/source/forms/controlpropertyhdl.cxx as well as in xmloff/source/style/bordrhdl.cxx (since solid also indicates border style). -- You are receiving this mail because: You are the assignee for the bug.
