summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authornavin patidar <patidar@kacst.edu.sa>2013-04-03 11:51:40 +0300
committerLior Kaplan <kaplanlior@gmail.com>2013-04-03 14:12:57 +0000
commitd0cfbb882c4c00fea4858f9d4b2511df66dd087b (patch)
tree1f972ab7784a6eb7fae98d25d0622d7e158809b1 /sw
parent4c16e415d9cc17405256c9c4eebdb6c908308867 (diff)
fix fdo#40496: don't reset RES_FRAMEDIR attribute.
fix regression introduced by bb920862c02047471f0ac5e78358e8d8fd9b93e7 commit discussed here : https://bugs.freedesktop.org/show_bug.cgi?id=40496#c13 choosing correct default alignment for RTL text need some discussion. Change-Id: I2aec9391d076af6d5fbf00ba5bdad030ac0286ed Reviewed-on: https://gerrit.libreoffice.org/3182 Reviewed-by: Lior Kaplan <kaplanlior@gmail.com> Tested-by: Lior Kaplan <kaplanlior@gmail.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/ui/shells/textsh1.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/ui/shells/textsh1.cxx b/sw/source/ui/shells/textsh1.cxx
index 395c7d8b89cb..e92cde6b2355 100644
--- a/sw/source/ui/shells/textsh1.cxx
+++ b/sw/source/ui/shells/textsh1.cxx
@@ -499,9 +499,8 @@ void SwTextShell::Execute(SfxRequest &rReq)
aAttribs.insert( aAttribs.end(), nE++ );
pUShorts += 2;
}
- // we don't want to change writing direction and text alignment.
+ // we don't want to change writing direction.
aAttribs.erase( RES_FRAMEDIR );
- aAttribs.erase( RES_PARATR_ADJUST );
rWrtSh.ResetAttr( aAttribs );
rReq.Done();
break;