Startcenter: ignore repeated clicks inside recent docs view

Change-Id: Ia433adb26e820b89c4d207d018d0daf42654b4a0
This commit is contained in:
Zolnai Tamás
2014-01-10 15:49:00 +01:00
parent 89a3acbdb5
commit 1ae9feedf1

View File

@@ -183,7 +183,7 @@ void RecentDocsView::MouseButtonDown( const MouseEvent& rMEvt )
{
if ( rMEvt.IsLeft() )
{
if( rMEvt.GetClicks() == 2 )
if( rMEvt.GetClicks() > 1 )
return;
size_t nPos = ImplGetItem(rMEvt.GetPosPixel());