McLan
McLan

Reputation: 2678

How to resize the designer-space in qt-creator if needed when developing?

As I am putting more widgets on top of more layouts in my application, the space where I design the GUI is getting also bigger for the Qt-creator interface.

I have many buttons and frames which are out of reach. I cannot see them (or click them, of course). I don't know how they look until I run the whole application for debugging.

enter image description here

Is there is a way to zoom out/in the main frame (the whole playground) so that I can see my full GUI design on the UI of Qt IDE?

P.S.: I am working on macBook 13"

Upvotes: 0

Views: 8205

Answers (2)

Pramod Kore
Pramod Kore

Reputation: 1

You can use this steps Tool-->options-> Text editor ->zoom

Text editor

Upvotes: -2

Aaron
Aaron

Reputation: 1191

Zooming is not possible. You can use Tools -> Form Editor -> Preview.

If the viewport gets too small the QtCreator shows scrollbars which allow to move the part of interest into view.

Note, on some system configurations the scollbars may be very small and hard to handle.

Upvotes: 3

Related Questions