| commit | dcf185ea162a4f593c66639cb3aebdc9c3d1a60f | [log] |
|---|---|---|
| author | heiko tietze <tietze.heiko@gmail.com> | Tue Jan 15 09:38:00 2019 +0100 |
| committer | Heiko Tietze <tietze.heiko@gmail.com> | Tue Jan 15 14:03:12 2019 +0100 |
| tree | 8d837f66e2b0eec52f04731d85164332a70c35ad | |
| parent | dc7ae151c481b9d6154ff3f982508b1e0f0cb5fd [diff] |
Resolves: tdf#122633 - Print dialog Preview is Off By default on now Change-Id: I7619d290e3dd9032b765057b8878d5dad035eafc Reviewed-on: https://gerrit.libreoffice.org/66351 Tested-by: Jenkins Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com>
diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx index 982d985..73d7b5b 100644 --- a/vcl/source/window/printdlg.cxx +++ b/vcl/source/window/printdlg.cxx
@@ -867,10 +867,10 @@ void PrintDialog::readFromSettings() // preview box aValue = pItem->getValue( "PrintDialog", "HasPreview" ); if ( aValue.equalsIgnoreAsciiCase("true") ) mpPreviewBox->Check( true ); else if ( aValue.equalsIgnoreAsciiCase("false") ) mpPreviewBox->Check( false ); else mpPreviewBox->Check( true ); }