Custom QGraphicsWebView - scrollbars always on
QML and Qt Quick
2
Posts
1
Posters
1.3k
Views
1
Watching
-
Solved:
@
QWebFrame* windowFrame = this->page()->mainFrame();
windowFrame->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOff);
windowFrame->setScrollBarPolicy(Qt::Horizontal, Qt::ScrollBarAlwaysOff);--
@okay, so I have removed the scrollbars, but I don't want to make site bounded into the view area, is it possible?