From 8ced97caa409d6dc8f69230145e9c9f281fb84fe Mon Sep 17 00:00:00 2001 From: Philippe Jung Date: Tue, 9 Jun 2015 16:01:54 +0200 Subject: 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 Tested-by: Philippe Jung --- vcl/source/window/menufloatingwindow.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcl') diff --git a/vcl/source/window/menufloatingwindow.cxx b/vcl/source/window/menufloatingwindow.cxx index cd92d11f5be4..8af281b47cfc 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(); -- cgit