diff options
author | Yousuf Philips <philipz85@hotmail.com> | 2017-11-10 18:54:47 +0400 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2017-11-10 23:14:03 +0100 |
commit | 7df058224a7cabb1cbfc8564ffe22a6844fb2a1f (patch) | |
tree | 75a4a877ce7c3c0658fd575f89b08a3c588676de | |
parent | 3b2ae25594774e23ab513ea6f99a0552c7ac5caf (diff) |
tdf#86508 Use Yellow and Green for 2 entry color scale
Change-Id: Icde57593fb2cb589465c574894ab10184702655a
Reviewed-on: https://gerrit.libreoffice.org/44603
Reviewed-by: Heiko Tietze <tietze.heiko@googlemail.com>
Tested-by: Jenkins <ci@libreoffice.org>
-rw-r--r-- | sc/source/ui/condformat/condformatdlgentry.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx index b2a55fc3aca7..968576a8d2ba 100644 --- a/sc/source/ui/condformat/condformatdlgentry.cxx +++ b/sc/source/ui/condformat/condformatdlgentry.cxx @@ -786,8 +786,8 @@ void ScColorScale2FrmtEntry::Init() { maLbEntryTypeMin->SetSelectHdl( LINK( this, ScColorScale2FrmtEntry, EntryTypeHdl ) ); maLbEntryTypeMax->SetSelectHdl( LINK( this, ScColorScale2FrmtEntry, EntryTypeHdl ) ); - maLbColMin->SelectEntry(Color(COL_LIGHTRED)); - maLbColMax->SelectEntry(Color(COL_LIGHTBLUE)); + maLbColMin->SelectEntry(Color(0xFFF685)); // Light Yellow 2 + maLbColMax->SelectEntry(Color(0x65C295)); // Light Green 2 } ScFormatEntry* ScColorScale2FrmtEntry::createColorscaleEntry() const |