summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLászló Németh <nemeth@numbertext.org>2021-12-07 13:14:29 +0100
committerLászló Németh <nemeth@numbertext.org>2021-12-08 14:11:47 +0100
commitc6af542a31e167e5a01908d049e399ce06a5e4e4 (patch)
treefc9af1a229f082eb4046fc6c469d49801c9eef67 /include
parent19d3ecf9334f9750c06feb7207ecc3c6b98ba086 (diff)
tdf#146120 sw: show tracked table changes with different color
In Change Tracking, show deleted table rows in cyan and inserted rows in pink. In this case, don't show original table row or cell background. Follow-up to commit f481c2c8e74bded11fac754e493560391229dbcd "tdf#144057 sw track changes: hide deleted table rows". Change-Id: Ib9cc411b62b92bc8a83dda7589f3e798f7e96f41 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126482 Tested-by: László Németh <nemeth@numbertext.org> Reviewed-by: László Németh <nemeth@numbertext.org> (cherry picked from commit f348440e17debacbcba9153e238e010e8c020bdc) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126510 Tested-by: Jenkins
Diffstat (limited to 'include')
-rw-r--r--include/tools/color.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/tools/color.hxx b/include/tools/color.hxx
index a34b55863701..555017a21dee 100644
--- a/include/tools/color.hxx
+++ b/include/tools/color.hxx
@@ -491,6 +491,8 @@ constexpr ::Color COL_AUTHOR8_LIGHT ( 0xE2, 0xEA, 0xF1 );
constexpr ::Color COL_AUTHOR9_DARK ( 0xD1, 0x76, 0x00 );
constexpr ::Color COL_AUTHOR9_NORMAL ( 0xFF, 0xE2, 0xB9 );
constexpr ::Color COL_AUTHOR9_LIGHT ( 0xFF, 0xE7, 0xC7 );
+constexpr ::Color COL_AUTHOR_TABLE_INS ( 0xE1, 0xF2, 0xFA );
+constexpr ::Color COL_AUTHOR_TABLE_DEL ( 0xFC, 0xE6, 0xF4 );
template<typename charT, typename traits>
inline std::basic_ostream<charT, traits>& operator <<(std::basic_ostream<charT, traits>& rStream, const Color& rColor)