Skip to content

Commit

Permalink
+ fix writing STEP settings
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Jun 9, 2015
1 parent 3a7772d commit 54317be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mod/Part/Gui/DlgSettingsGeneral.cpp
Expand Up @@ -210,12 +210,12 @@ void DlgImportExportStep::saveSettings()
// scheme
if (ui->radioButtonAP203->isChecked()) {
Interface_Static::SetCVal("write.step.schema","AP203");
hGrp->GetASCII("Scheme", "AP203");
hGrp->SetASCII("Scheme", "AP203");
}
else {
// possible values: AP214CD (1996), AP214DIS (1998), AP214IS (2002)
Interface_Static::SetCVal("write.step.schema","AP214CD");
hGrp->GetASCII("Scheme", "AP214CD");
hGrp->SetASCII("Scheme", "AP214CD");
}

// header info
Expand Down

0 comments on commit 54317be

Please sign in to comment.