mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-10 00:07:52 -06:00
FIX: cali related encoding problem
Change-Id: Ia79237d9e2f37fd8720411891fb724c3bd00b9fb
This commit is contained in:
parent
cefd9876fc
commit
2eb9dd01a7
2 changed files with 3 additions and 3 deletions
|
@ -261,7 +261,7 @@ void CaliPASaveAutoPanel::sync_cali_result(const std::vector<PACalibResult>& cal
|
|||
for (auto& info : m_obj->selected_cali_preset) {
|
||||
if (history.filament_id == info.filament_id) {
|
||||
filtered_results.push_back(history);
|
||||
selections.push_back(history.name);
|
||||
selections.push_back(from_u8(history.name));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -311,7 +311,7 @@ void CaliPASaveAutoPanel::sync_cali_result(const std::vector<PACalibResult>& cal
|
|||
|
||||
for (auto& name : preset_names) {
|
||||
if (item.tray_id == name.first) {
|
||||
comboBox_tray_name->SetValue(name.second);
|
||||
comboBox_tray_name->SetValue(from_u8(name.second));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue