Home > front end >  How to confirm the Widget Order in Qt Creator?
How to confirm the Widget Order in Qt Creator?

Time:06-01

I've just defined the order in which I want my widgets on a Qt GUI but I can't confirm my action after hours of researches. How can I do it please ?

Here is the order I defined :

enter image description here

I would like the widgets to be in this order : 1 - 2 - 3

But here, there are in that order : 3 - 2 - 1

I tried to build the project to see if something different happens but it just builds exactly what I see on Qt Creator :

enter image description here

I read the tutorial below but there's no information about my problem : https://doc.qt.io/archives/4.3/designer-tab-order.html#:~:text=Setting the Tab Order,position in the tab order.

Btw, I don't understand why it's that complicated to do such a simple thing. It's crazy that just pressing the Enter key doesn't do the trick.

CodePudding user response:

I found what I needed. To re-order widgets, we just have to move them manually with the mouse.

  • Related