https://bugs.documentfoundation.org/show_bug.cgi?id=161003
Justin L <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.documentfounda | |tion.org/show_bug.cgi?id=14 | |8675, | |https://bugs.documentfounda | |tion.org/show_bug.cgi?id=16 | |1392 --- Comment #5 from Justin L <[email protected]> --- git grep -i "separator line" results in sw/uiconfig/swriter/ui/footnoteareapage.ui and git grep -20 footnoteareapage.ui points to sw/source/ui/misc/pgfnote.cxx where we see that this is a SwPageFootnoteInfo (sw/source/core/layout/pagedesc.cxx) where m_LineColor is never initialized, so it must be using Color's default of black (include/tools/color.hxx). constexpr Color() : mValue(0) // black Noel just told me that COL_AUTO is the same as COL_TRANSPARENT - so it just depends on the implementation whether it is invisible or the opposite of the background. For lines (like the separator) it appears to be implemented as COL_TRANSPARENT - since I can't see the line at all when I forced it to COL_AUTO. -- You are receiving this mail because: You are the assignee for the bug.
