[solved] Horizontal scrollbar isn't show up.
In PyQt4 application I use QGraphicsView and QGraphicsScene in it, which can be scaled. Vertical scrollbar show up, but horizontal is not. Why? I haven't used anything what can make such unsimmetric behavior. And even after inclusion of
Code:
MainWnd.GrahicsViewMain.setHorizontalScrollBarPolicy(Qt.ScrollBarAlwaysOn)
MainWnd.GrahicsViewMain.horizontalScrollBar().show()
nothing changes.
EDIT: Horizontal scrollbar was hidden under another widget. It works OK.
Re: [solved] Horizontal scrollbar isn't show up.
Seems that you are not using layouts. You should reconsider this decision.