mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 23:46:24 -06:00
FIX:time displayed inconsisitently on send dialog(STUDIO-2694)
Change-Id: Id15a328b6dcbde329a25bf45e8b886597689549d
This commit is contained in:
parent
826f27089e
commit
b2eee96a80
1 changed files with 1 additions and 1 deletions
|
@ -1199,7 +1199,7 @@ void SendToPrinterDialog::set_default()
|
|||
wxString time;
|
||||
PartPlate *plate = m_plater->get_partplate_list().get_curr_plate();
|
||||
if (plate) {
|
||||
if (plate->get_slice_result()) { time = wxString::Format("%s", get_bbl_monitor_time_dhm(plate->get_slice_result()->print_statistics.modes[0].time)); }
|
||||
if (plate->get_slice_result()) { time = wxString::Format("%s", short_time(get_time_dhms(plate->get_slice_result()->print_statistics.modes[0].time))); }
|
||||
}
|
||||
|
||||
char weight[64];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue