Rename "Document" selection value to "Page"

This commit is contained in:
WandererFan
2016-10-27 14:16:45 -04:00
committed by Yorik van Havre
parent 68c3f460d7
commit b3c3d7a950
6 changed files with 17 additions and 17 deletions

View File

@@ -180,7 +180,7 @@ void TaskProjGroup::projectionTypeChanged(int index)
//layout per Page (Document)
Gui::Command::doCommand(Gui::Command::Doc,
"App.activeDocument().%s.ProjectionType = '%s'",
multiView->getNameInDocument(), "Document");
multiView->getNameInDocument(), "Default");
} else if(index == 1) {
// First Angle layout
Gui::Command::doCommand(Gui::Command::Doc,
@@ -210,7 +210,7 @@ void TaskProjGroup::scaleTypeChanged(int index)
if(index == 0) {
// Document Scale Type
Gui::Command::doCommand(Gui::Command::Doc, "App.activeDocument().%s.ScaleType = '%s'", multiView->getNameInDocument()
, "Document");
, "Page");
} else if(index == 1) {
// Automatic Scale Type
Gui::Command::doCommand(Gui::Command::Doc, "App.activeDocument().%s.ScaleType = '%s'", multiView->getNameInDocument()