[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - sw/source
Michael Stahl
mstahl at redhat.com
Sun Sep 1 04:42:16 PDT 2013
sw/source/ui/docvw/edtwin.cxx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
New commits:
commit 5f387c93e42ba1028e9fc54e10cb0e8c0e1b7a75
Author: Michael Stahl <mstahl at redhat.com>
Date: Wed Aug 28 14:28:40 2013 +0200
fdo#67358: sw: "fix" line painting artifacts when resizing columns
SwEditWin::MouseButtonDown(): for unknown reasons invalidating the
window here causes the column resizing lines to not be removed after the
resize is done, so disable it.
(regression from 289185fd02d6d9734b6dbde01f15c4e6c5beacbb)
Change-Id: If3ba0a72c53c5c2734fb905ae35d62f6a3e8938b
(cherry picked from commit a2c67975c03010b90c706523293f180c1f29e229)
Reviewed-on: https://gerrit.libreoffice.org/5663
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sw/source/ui/docvw/edtwin.cxx b/sw/source/ui/docvw/edtwin.cxx
index 37210b2..e971d1e 100644
--- a/sw/source/ui/docvw/edtwin.cxx
+++ b/sw/source/ui/docvw/edtwin.cxx
@@ -2749,7 +2749,9 @@ void SwEditWin::MouseButtonDown(const MouseEvent& _rMEvt)
rSh.SetShowHeaderFooterSeparator( Footer, false );
// Repaint everything
- rSh.GetWin()->Invalidate();
+ // FIXME fdo#67358 for unknown reasons this causes painting
+ // problems when resizing table columns, so disable it
+// rSh.GetWin()->Invalidate();
}
}
More information about the Libreoffice-commits
mailing list