diff --git a/src/Mod/Drawing/Gui/Command.cpp b/src/Mod/Drawing/Gui/Command.cpp index 53a37bd45..69e373f3c 100644 --- a/src/Mod/Drawing/Gui/Command.cpp +++ b/src/Mod/Drawing/Gui/Command.cpp @@ -175,8 +175,11 @@ Gui::Action * CmdDrawingNewPage::createAction(void) a->setProperty("Template", dir.absoluteFilePath(dir[i])); if (id == 3) { - defaultAction = a; - defaultId = pcAction->actions().size() - 1; + if (!defaultAction) { + // set the first found A3 (A3_Landscape) as default + defaultAction = a; + defaultId = pcAction->actions().size() - 1; + } } } }