Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
In the following line of code.
auto from_time = [scale, minimum, rect](qreal time) -> qreal { return (time - minimum) * scale + rect.x(); }; What is the meaning of this Word "-> qreal"
@summit its the expected return time type of the lambda.
@J-Hilk Thank you very much.