I'm implementing a image viewer based on the Image Viewer example (http://doc.trolltech.com/4.7-snapshot/widgets-imageviewer.html)
But I'm using the design mode for the interface.
A QLabel inside a QScrollBar QScrollArea. The image appears, but when I zoom, the bars never appear.
I found out the setValue() method -used in adjustScrollBar() method- from each scrollBar, never modifies its value (it's always 0). If that value was greather than 0, the bar would appear. In the original example, it does.
What am I missing in UI designer?? Thanks.