summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m3
-rw-r--r--sw/source/core/view/viewsh.cxx5
2 files changed, 8 insertions, 0 deletions
diff --git a/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m b/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m
index 82a970f0fe2e..f709fc420be8 100644
--- a/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m
+++ b/ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTile.m
@@ -59,6 +59,9 @@
self.tester.params.tileHeight);
CGContextRestoreGState(context);
+
+ MLOContentSize size = touch_lo_get_content_size();
+ NSLog(@"MLOContentSize: width=%lld, height=%lld",size.width, size.height);
}
@end
diff --git a/sw/source/core/view/viewsh.cxx b/sw/source/core/view/viewsh.cxx
index d0f27e8bea94..690105b12d2b 100644
--- a/sw/source/core/view/viewsh.cxx
+++ b/sw/source/core/view/viewsh.cxx
@@ -1821,6 +1821,11 @@ MLOContentSize touch_lo_get_content_size()
SwWrtShell *pViewShell = GetActiveWrtShell();
if (pViewShell)
{
+ static const long WIDTH_ADDITION = 6L * DOCUMENTBORDER;
+ static const long HEIGHT_ADDITION = 2L * DOCUMENTBORDER;
+ Size documentSize =pViewShell->GetView().GetDocSz();
+ return MLOContentSizeMake(documentSize.Width() + WIDTH_ADDITION,
+ documentSize.Height() + HEIGHT_ADDITION);
}
return MLOContentSizeMake(0,0);
}