Kaydet (Commit) c4ef30ea authored tarafından Miklos Vajna's avatar Miklos Vajna

sw lok: fix sidebarwindows::SwSidebarWin pixel position

So SwSidebarWin member functions don't get twip values when they call
GetPosPixel().

Change-Id: Ied4ff7f49d0320766b045d78f731900af92d37ef
üst bb34de01
......@@ -593,6 +593,10 @@ void SwPostItMgr::PreparePageContainer()
void SwPostItMgr::LayoutPostIts()
{
bool bEnableMapMode = comphelper::LibreOfficeKit::isActive() && !mpEditWin->IsMapModeEnabled();
if (bEnableMapMode)
mpEditWin->EnableMapMode();
if ( !mvPostItFields.empty() && !mbWaitingForCalcRects )
{
mbLayouting = true;
......@@ -809,6 +813,9 @@ void SwPostItMgr::LayoutPostIts()
mbLayouting = false;
}
if (bEnableMapMode)
mpEditWin->EnableMapMode(false);
}
bool SwPostItMgr::BorderOverPageBorder(unsigned long aPage) const
......@@ -856,6 +863,8 @@ void SwPostItMgr::PaintTile(OutputDevice& rRenderContext, const Rectangle& /*rRe
if (!pPostIt)
continue;
bool bEnableMapMode = !mpEditWin->IsMapModeEnabled();
mpEditWin->EnableMapMode();
rRenderContext.Push(PushFlags::MAPMODE);
Point aOffset(mpEditWin->PixelToLogic(pPostIt->GetPosPixel()));
MapMode aMapMode(rRenderContext.GetMapMode());
......@@ -867,6 +876,8 @@ void SwPostItMgr::PaintTile(OutputDevice& rRenderContext, const Rectangle& /*rRe
pPostIt->PaintTile(rRenderContext, aRectangle);
rRenderContext.Pop();
if (bEnableMapMode)
mpEditWin->EnableMapMode(false);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment