[Libreoffice-commits] core.git: sw/source
Miklos Vajna
vmiklos at suse.cz
Tue Feb 26 02:53:50 PST 2013
sw/source/ui/docvw/edtwin.cxx | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
New commits:
commit 61f467c8974d6b6face41e7027d75ae4ddb6fdb2
Author: Miklos Vajna <vmiklos at suse.cz>
Date: Tue Feb 26 11:48:22 2013 +0100
n#802888 SwEditWin: let fields have priority over header/footer flys
http://people.freedesktop.org/~vmiklos/2013/watermark-field-click.odt is
a reproducer, double-click was catched by the fly frame from the header,
so the field edit dialog didn't appear.
Change-Id: Ibd3ea382085fa4cbdc1af73d4be1e5c053a81eaa
diff --git a/sw/source/ui/docvw/edtwin.cxx b/sw/source/ui/docvw/edtwin.cxx
index 73b9331..f9475d3 100644
--- a/sw/source/ui/docvw/edtwin.cxx
+++ b/sw/source/ui/docvw/edtwin.cxx
@@ -2768,6 +2768,12 @@ void SwEditWin::MouseButtonDown(const MouseEvent& _rMEvt)
bool bOverFly = false;
bool bPageAnchored = false;
bool bOverHeaderFooterFly = IsOverHeaderFooterFly( aDocPos, eControl, bOverFly, bPageAnchored );
+
+ sal_Bool bIsDocReadOnly = rView.GetDocShell()->IsReadOnly();
+ if (bOverHeaderFooterFly && (!bIsDocReadOnly && rSh.GetCurFld()))
+ // We have a field here, that should have priority over header/footer fly.
+ bOverHeaderFooterFly = false;
+
int nNbFlyClicks = 1;
// !bOverHeaderFooterFly doesn't mean we have a frame to select
if ( !bPageAnchored && ( ( rSh.IsHeaderFooterEdit( ) && !bOverHeaderFooterFly && bOverFly ) ||
@@ -2864,7 +2870,6 @@ void SwEditWin::MouseButtonDown(const MouseEvent& _rMEvt)
// work but in practice ...
rView.SelectShellForDrop();
- sal_Bool bIsDocReadOnly = rView.GetDocShell()->IsReadOnly();
bool bCallBase = true;
if( pQuickHlpData->m_bIsDisplayed )
More information about the Libreoffice-commits
mailing list