summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-08-28 14:28:40 +0200
committerMichael Stahl <mstahl@redhat.com>2013-08-28 14:47:34 +0200
commita2c67975c03010b90c706523293f180c1f29e229 (patch)
tree2f13495564e43ea58fa5cbd3a20f695f5e6e960a
parentedd2db1c783bd571ff796a5298385cacc91877b9 (diff)
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
-rw-r--r--sw/source/ui/docvw/edtwin.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/sw/source/ui/docvw/edtwin.cxx b/sw/source/ui/docvw/edtwin.cxx
index eae062e33265..3321d288674b 100644
--- a/sw/source/ui/docvw/edtwin.cxx
+++ b/sw/source/ui/docvw/edtwin.cxx
@@ -2807,7 +2807,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();
}
}