Fix a landscape
option error.
This commit is contained in:
parent
cef177abc4
commit
600077996c
1 changed files with 2 additions and 3 deletions
|
@ -252,15 +252,14 @@ void PrintPreviewMessageHandler::HandleGetPreview(
|
||||||
int margins_type = 0; // DEFAULT_MARGINS
|
int margins_type = 0; // DEFAULT_MARGINS
|
||||||
bool print_background = false;
|
bool print_background = false;
|
||||||
bool print_selection_only = false;
|
bool print_selection_only = false;
|
||||||
bool is_landscape = false; // layout: true for portrait, false for landscape
|
bool is_landscape = false;
|
||||||
|
|
||||||
if (!options.IsEmpty()) {
|
if (!options.IsEmpty()) {
|
||||||
options.Get(printing::kSettingMarginsType, &margins_type);
|
options.Get(printing::kSettingMarginsType, &margins_type);
|
||||||
options.Get(printing::kSettingShouldPrintBackgrounds, &print_background);
|
options.Get(printing::kSettingShouldPrintBackgrounds, &print_background);
|
||||||
options.Get(printing::kSettingShouldPrintSelectionOnly,
|
options.Get(printing::kSettingShouldPrintSelectionOnly,
|
||||||
&print_selection_only);
|
&print_selection_only);
|
||||||
std::string layout;
|
options.Get(printing::kSettingLandscape, &is_landscape);
|
||||||
options.Get("layout", &is_landscape);
|
|
||||||
}
|
}
|
||||||
settings->SetInteger(printing::kSettingMarginsType, margins_type);
|
settings->SetInteger(printing::kSettingMarginsType, margins_type);
|
||||||
settings->SetBoolean(printing::kSettingShouldPrintBackgrounds,
|
settings->SetBoolean(printing::kSettingShouldPrintBackgrounds,
|
||||||
|
|
Loading…
Reference in a new issue