The vertical scroll direction in the Realtime example works opposite to what most users expect. The logic for inverted axis work however. I found if I changed ScrollBar::isInverted() to:

Qt Code:
  1. bool ScrollBar::isInverted() const
  2. {
  3. if (orientation() == Qt::Vertical)
  4. return !d_inverted;
  5. else
  6. return d_inverted;
  7. }
To copy to clipboard, switch view to plain text mode 

it works as expected