mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-26 16:13:58 -06:00
SlicedInfo: Removed secondes from estimated times
This commit is contained in:
parent
d491a38fd7
commit
d81f7d8465
3 changed files with 36 additions and 4 deletions
|
@ -363,6 +363,9 @@ namespace Slic3r {
|
|||
// Returns the estimated time, in format DDd HHh MMm SSs
|
||||
std::string get_time_dhms() const;
|
||||
|
||||
// Returns the estimated time, in format DDd HHh MMm
|
||||
std::string get_time_dhm() const;
|
||||
|
||||
// Returns the estimated time, in minutes (integer)
|
||||
std::string get_time_minutes() const;
|
||||
|
||||
|
@ -473,6 +476,8 @@ namespace Slic3r {
|
|||
|
||||
// Returns the given time is seconds in format DDd HHh MMm SSs
|
||||
static std::string _get_time_dhms(float time_in_secs);
|
||||
// Returns the given time is minutes in format DDd HHh MMm
|
||||
static std::string _get_time_dhm(float time_in_secs);
|
||||
|
||||
// Returns the given, in minutes (integer)
|
||||
static std::string _get_time_minutes(float time_in_secs);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue