[Libreoffice-commits] core.git: vcl/source

Philippe Jung phil.jung at free.fr
Tue Jun 9 07:37:37 PDT 2015


 vcl/source/window/menufloatingwindow.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8ced97caa409d6dc8f69230145e9c9f281fb84fe
Author: Philippe Jung <phil.jung at free.fr>
Date:   Tue Jun 9 16:01:54 2015 +0200

    Last item of menu with title cannot be hilighted
    
    Seing the fix, it probably also impacts scrolled floating menus.
    
    Change-Id: Ia740573c3ed54cf01a57575a2ca00d49165be28d
    Reviewed-on: https://gerrit.libreoffice.org/16187
    Reviewed-by: Philippe Jung <phil.jung at free.fr>
    Tested-by: Philippe Jung <phil.jung at free.fr>

diff --git a/vcl/source/window/menufloatingwindow.cxx b/vcl/source/window/menufloatingwindow.cxx
index cd92d11..8af281b 100644
--- a/vcl/source/window/menufloatingwindow.cxx
+++ b/vcl/source/window/menufloatingwindow.cxx
@@ -190,7 +190,7 @@ void MenuFloatingWindow::ImplHighlightItem( const MouseEvent& rMEvt, bool bMBDow
     long nY = GetInitialItemY();
     long nMouseY = rMEvt.GetPosPixel().Y();
     Size aOutSz = GetOutputSizePixel();
-    if ( ( nMouseY >= nY ) && ( nMouseY < ( aOutSz.Height() - nY ) ) )
+    if ( ( nMouseY >= nY ) && ( nMouseY < ( aOutSz.Height() + nY ) ) )
     {
         bool bHighlighted = false;
         size_t nCount = pMenu->pItemList->size();


More information about the Libreoffice-commits mailing list