mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 23:17:35 -06:00
FIX: support styles were not translated
Field labels are translated when being appended to combo box, so need to add _ symbol. Change-Id: Ib5207c4d357c3b9cd797264f872e2f6fb8859e6e
This commit is contained in:
parent
225b68034e
commit
3a14acba99
1 changed files with 1 additions and 1 deletions
|
@ -2085,7 +2085,7 @@ void TabPrint::toggle_options()
|
|||
for (auto i : set) {
|
||||
opt.enum_values.push_back(def->enum_values[i]);
|
||||
opt.enum_labels.push_back(def->enum_labels[i]);
|
||||
cb->Append(def->enum_labels[i]);
|
||||
cb->Append(_(def->enum_labels[i]));
|
||||
}
|
||||
cb->SetSelection(n >= cb->GetCount() ? cb->GetCount() - 1 : n);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue