Dividing sexagesimal numbers (hh:mm) doesn't work without parentheses

Issue #996 new
Yannick Schillinger created an issue

When trying to divide two numbers written in the hh:mm format (for example in order to compare two durations), results are wrong:

1:30 / 4:00 = 4860000 secondĀ²

It seems to be an issue with operator precedence, because when using parentheses, it works as expected:

(1:30) / (4:00) = 0.375

Using nightly build 2020-06-10-beaf9d1b on Windows 10.

Comments (0)

  1. Log in to comment