mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Move to next cell if user presses Enter on a property
This commit is contained in:
parent
c7ab11f4f4
commit
8070f2a517
@ -512,11 +512,22 @@ ComponentDialog::~ComponentDialog()
|
||||
}
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Intercept key presses and move to next row if user presses enter in the
|
||||
// property table.
|
||||
void ComponentDialog::keyPressEvent(QKeyEvent* e)
|
||||
{
|
||||
qDebug() << "Dialog key event" << e->key();
|
||||
|
||||
QDialog::keyPressEvent(e);
|
||||
if (e->key() == Qt::Key_Return && propertyTable->hasFocus()) {
|
||||
int row = propertyTable->currentRow();
|
||||
if (row < propertyTable->rowCount())
|
||||
propertyTable->setCurrentCell(row + 1, 1);
|
||||
else
|
||||
slotOKButton();
|
||||
}
|
||||
else
|
||||
QDialog::keyPressEvent(e);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
|
Loading…
x
Reference in New Issue
Block a user