diff options
author | heiko tietze <tietze.heiko@gmail.com> | 2017-08-03 18:59:31 +0200 |
---|---|---|
committer | Heiko Tietze <tietze.heiko@googlemail.com> | 2017-08-07 14:48:32 +0200 |
commit | 22d5927000a32c54b0ba0355ca9c0999d3b00fb7 (patch) | |
tree | 4c10e0d7b440565d290b9ffc47dbc8be783e5439 | |
parent | f45cdbc9f3dd877a2ebda1e2718c59e83faf3c6a (diff) |
tdf#93244 Widescreen format
By default the slide format is now 16:9 in Impress
Change-Id: Ia3dd48da772c53b04f7fa833e1667acc78b8bdad
Reviewed-on: https://gerrit.libreoffice.org/40733
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Reviewed-by: Heiko Tietze <tietze.heiko@googlemail.com>
-rw-r--r-- | sd/source/core/drawdoc2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/core/drawdoc2.cxx b/sd/source/core/drawdoc2.cxx index ea68d0694a08..647443663085 100644 --- a/sd/source/core/drawdoc2.cxx +++ b/sd/source/core/drawdoc2.cxx @@ -610,7 +610,7 @@ void SdDrawDocument::CreateFirstPages( SdDrawDocument const * pRefDocument /* = else { // Impress: always use screen format, landscape. - Size aSz( SvxPaperInfo::GetPaperSize(PAPER_SCREEN_4_3, MapUnit::Map100thMM) ); + Size aSz( SvxPaperInfo::GetPaperSize(PAPER_SCREEN_16_9, MapUnit::Map100thMM) ); pPage->SetSize( Size( aSz.Height(), aSz.Width() ) ); pPage->SetBorder(0, 0, 0, 0); } |