diff options
author | Malte Timmermann <Malte.Timmermann@sun.com> | 2010-02-01 16:39:07 +0100 |
---|---|---|
committer | Malte Timmermann <Malte.Timmermann@sun.com> | 2010-02-01 16:39:07 +0100 |
commit | dc9ce37f90da7f845e38547bd12d53bea646beae (patch) | |
tree | 6c1fe0dbce9a4ffa083a19cb7fa7ddda26256be0 /sw/source/ui | |
parent | fdde737ea0caf7450a6676f46651f78ee05321ab (diff) |
mtaccfixes: #110498# Enable zoom in preview even if AT support is turned on
Diffstat (limited to 'sw/source/ui')
-rw-r--r-- | sw/source/ui/uiview/pview.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/ui/uiview/pview.cxx b/sw/source/ui/uiview/pview.cxx index 801a5fa68f6a..1daee9c89ec2 100644 --- a/sw/source/ui/uiview/pview.cxx +++ b/sw/source/ui/uiview/pview.cxx @@ -1569,7 +1569,8 @@ void SwPagePreView::GetState( SfxItemSet& rSet ) ASSERT(nWhich, leeres Set); SwPagePreviewLayout* pPagePrevwLay = GetViewShell()->PagePreviewLayout(); //#106746# zoom has to be disabled if Accessibility support is switched on - BOOL bZoomEnabled = !Application::GetSettings().GetMiscSettings().GetEnableATToolSupport(); + // MT 2010/01, see #110498# + BOOL bZoomEnabled = TRUE; // !Application::GetSettings().GetMiscSettings().GetEnableATToolSupport(); while(nWhich) { |