Thomas Ayoub
Thomas Ayoub

Reputation: 29431

Set window size beyond screen resolution in Qt

I want to set a QT window size beyond my screen size (i.e. 10 000px) but when I use

resize(10000, 800);

the window auto-fit to my screen max res (1280*800) and I have no idea how to over-pass this. I'm using QT on Mac Os X.

Upvotes: 3

Views: 848

Answers (1)

user362638
user362638

Reputation:

Put your images (or other widgets) inside a QScrollArea.

Upvotes: 2

Related Questions