I try to jump with tab key between a QLineEdit and QPushButton but when I hit the key, the edit stays focused. This is the relevant code:
Code:
widget->setLayout(vbox); vbox->addWidget(line); vbox->addWidget(button); setTabOrder(line, button); setTabOrder(button, line); setCentralWidget(widget);
Please, does anyone know what I'm doing wrong?