21 lines
965 B
Diff
21 lines
965 B
Diff
--- sw/source/ui/uiview/viewmdi.cxx 2010-11-11 16:46:47.000000000 +0100
|
|
+++ sw/source/ui/uiview/viewmdi.cxx-gil 2011-03-03 15:20:14.000000000 +0100
|
|
@@ -125,15 +125,9 @@
|
|
|
|
if( SVX_ZOOM_OPTIMAL == eZoomType )
|
|
{
|
|
- if (pPostItMgr->HasNotes() && pPostItMgr->ShowNotes())
|
|
- {
|
|
- lLeftMargin = long(rLRSpace.GetLeft()) + aPageRect.Left() + nLeftOfst;
|
|
- }
|
|
- else
|
|
- {
|
|
+ if (!pPostItMgr->HasNotes() || !pPostItMgr->ShowNotes())
|
|
aPageSize.Width() -= ( rLRSpace.GetLeft() + rLRSpace.GetRight() + nLeftOfst * 2 );
|
|
- lLeftMargin = long(rLRSpace.GetLeft()) + aPageRect.Left() + nLeftOfst;
|
|
- }
|
|
+ lLeftMargin = long(rLRSpace.GetLeft()) + DOCUMENTBORDER + nLeftOfst;
|
|
nFac = aWindowSize.Width() * 100 / aPageSize.Width();
|
|
}
|
|
else if(SVX_ZOOM_WHOLEPAGE == eZoomType || SVX_ZOOM_PAGEWIDTH == eZoomType )
|