Problems with Open-Source Downloads read https://www.qt.io/blog/problem-with-open-source-downloads and https://forum.qt.io/post/638946
Incorrect documentation for void QAbstractSpinBox::stepBy(int steps)
-
This documentation page states that pressing
Qt::Key_PageUp
triggers a call tostepBy(10)
instead ofstepBy(1)
.
-
@Revolt it looks like documentation is consistent.
pressing Qt::Key_Down will trigger a call to stepBy(-1), whereas pressing Qt::Key_PageUp will trigger a call to stepBy(10)
See that example refer Key_Down and Key_PageUp, it's not comparing Key_Down with Key_Up.
Check table here for clarification.
-
Oooh, I see, I totally missed that one and thought it's
Key_Down
. Couldn't that section link to the one mentioned by you? Where the Up and Page Down are mentioned too, so it's clearer.
-
Hi @Revolt,
Oooh, I see, I totally missed that one and thought it's
Key_Down
. Couldn't that section link to the one mentioned by you? Where the Up and Page Down are mentioned too, so it's clearer.Your wish is my demand: https://codereview.qt-project.org/231300
-
@Revolt so it looks like your issue is solved, right? Please don't forget to mark your post as such. Thanks