diff options
author | Henry Castro <hcastro@collabora.com> | 2015-06-04 21:10:28 -0400 |
---|---|---|
committer | Henry Castro <hcastro@collabora.com> | 2015-06-04 21:10:28 -0400 |
commit | ed81eaf2f9ac33912f54a9bfa6a1e3d1aad07dc8 (patch) | |
tree | 92d3caef3b8d56363e872788f90e2822f25118a0 /sc/source/ui | |
parent | eb8c323d94bf13d4a373f88c6b932a97701c283b (diff) |
sc tiled editing: double-click empty cell
Change-Id: I35c43e2a22ac6591a2bcf9857808503c0e111344
Diffstat (limited to 'sc/source/ui')
-rw-r--r-- | sc/source/ui/view/gridwin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx index 0c7a5d312e19..eb1c5af20a57 100644 --- a/sc/source/ui/view/gridwin.cxx +++ b/sc/source/ui/view/gridwin.cxx @@ -2415,7 +2415,7 @@ void ScGridWindow::MouseButtonUp( const MouseEvent& rMEvt ) { // don't forward the event to an empty cell, causes deselection in // case we used the double-click to select the empty cell - if (bIsTiledRendering) + if (bIsTiledRendering && bDouble) { ScRefCellValue aCell; aCell.assign(*pViewData->GetDocument(), ScAddress(nPosX, nPosY, nTab)); |