From 1d769e322d7de72baa5f70805a076a698033867f Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Fri, 21 Dec 2018 12:46:04 +0100 Subject: [PATCH] A bit more informative description for the "display_orientation" parameter --- src/libslic3r/PrintConfig.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index f24d40fed..215b17481 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2400,7 +2400,9 @@ void PrintConfigDef::init_sla_params() def = this->add("display_orientation", coEnum); def->label = L("Display orientation"); - def->tooltip = L("Display orientation"); + def->tooltip = L("Set the actual LCD display orientation inside the SLA printer." + " Portrait mode will flip the meaning of display width and height parameters" + " and the output images will be rotated by 90 degrees."); def->cli = "display-orientation=s"; def->enum_keys_map = &ConfigOptionEnum::get_enum_values(); def->enum_values.push_back("landscape");