mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 13:16:39 +03:00
fix: changed the criteria to calculate the sunset / sunrise progression
This commit is contained in:
parent
9181d010ff
commit
24115049f3
@ -240,7 +240,7 @@ impl UserData for Time {
|
||||
// Sun hasn't yet risen
|
||||
progression = (night_duration - (rise - this.utc)).num_minutes() as f64
|
||||
/ night_duration.num_minutes() as f64;
|
||||
} else if this.utc >= rise {
|
||||
} else if up {
|
||||
// Sun is up
|
||||
progression = (this.utc - rise).num_minutes() as f64
|
||||
/ day_duration.num_minutes() as f64;
|
||||
|
Loading…
Reference in New Issue
Block a user