Qt: fixed scrolling of widgets.

git-svn-id: trunk@17572 -
This commit is contained in:
zeljko 2008-11-24 20:04:59 +00:00
parent 8519ca5376
commit b1780bca04

View File

@ -2912,7 +2912,7 @@ end;
procedure TQtWidget.scroll(dx, dy: integer);
begin
QWidget_scroll(Widget, dx, dy);
QWidget_scroll(getContainerWidget, dx, dy);
FScrollX := FScrollX + dx;
FScrollY := FScrollY + dy;
end;