I am trying to set the width of a vertical scrollbar (or any for that
matter) of a QScrollArea. I use PyQt4, kde-3.5.1, and the default
plastic syle. The size prints 50 for each scrollbar, but the width does
not change. Ideas? thanks in advance.<br>
<br>
from PyQt4.QtGui import *<br>
from PyQt4.QtCore import *<br>
<br>
a = QApplication([])<br>
scroll = QScrollArea()<br>
w = QWidget()<br>
w.setFixedSize(2000,2000)<br>
scroll.setWidget(w)<br>
<br>
bar = scroll.verticalScrollBar()<br>
bar.setFixedWidth(50)<br>
print bar.width()<br>
<br>
bar = scroll.horizontalScrollBar()<br>
bar.setFixedWidth(50)<br>
print bar.width()<br>
<br>
scroll.show()<br>
a.exec_()<br>
<br clear="all"><br>-- <br>Patrick Kidd Stinson<br><a href="http://pkaudio.sourceforge.net/">http://pkaudio.sourceforge.net/</a><br><a href="http://pksampler.sourceforge.net/">http://pksampler.sourceforge.net/</a>