[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - svx/source

Ivan Timofeev timofeev.i.s at gmail.com
Tue Sep 17 05:21:53 PDT 2013


 svx/source/tbxctrls/tbcontrl.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 95dfcdcf7710a2b384d3ef8a94443efee86eb701
Author: Ivan Timofeev <timofeev.i.s at gmail.com>
Date:   Sat Sep 14 09:16:28 2013 +0400

    fdo#68874: Highlighter icon doesn't change color if no text is selected
    
    the problem is that bChoiceFromPalette becomes false too early when StateChanged
    is called with nSID=SID_ATTR_CHAR_COLOR_BACKGROUND_EXT (we don't handle it in the
    switch) and the following call with nSID=SID_ATTR_CHAR_COLOR_BACKGROUND (which
    we actually want to handle) is no-op.
    
    Change-Id: I024f6a443535411648bda44576e838c3d863e7de
    (cherry picked from commit 1d0e18703523139e5fd6d11b6f3d72bb0b368036)
    Reviewed-on: https://gerrit.libreoffice.org/5941
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/svx/source/tbxctrls/tbcontrl.cxx b/svx/source/tbxctrls/tbcontrl.cxx
index 112ef1f..94a3ebe 100644
--- a/svx/source/tbxctrls/tbcontrl.cxx
+++ b/svx/source/tbxctrls/tbcontrl.cxx
@@ -2500,7 +2500,7 @@ void SvxColorExtToolBoxControl::StateChanged(
 
 {
     const SvxColorItem* pItem = 0;
-    if ( bChoiceFromPalette )
+    if ( bChoiceFromPalette && nSID == GetSlotId() )
     {
         bChoiceFromPalette = sal_False;
         switch( nSID )


More information about the Libreoffice-commits mailing list