mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Fix crash in component properties edit dialog
When editing the properties of a component, Qucs crashed after pressing enter at the last field (if was a lineedit) Corrected check when there is no property selected (for components with no editable properties) Changed property selection
This commit is contained in:
parent
e4dc3ca3c7
commit
d0f0e9fdfc
@ -692,15 +692,17 @@ void ComponentDialog::slotApplyChange(const QString& Text)
|
||||
void ComponentDialog::slotApplyProperty()
|
||||
{
|
||||
// pick selected row
|
||||
QTableWidgetItem *item = prop->selectedItems()[0];
|
||||
|
||||
QTableWidgetItem *item = prop->currentItem();
|
||||
|
||||
if(!item)
|
||||
return;
|
||||
|
||||
int row = item->row();
|
||||
|
||||
QString name = prop->item(row, 0)->text();
|
||||
QString value = prop->item(row, 1)->text();
|
||||
|
||||
if(!item)
|
||||
return;
|
||||
|
||||
|
||||
if (!ComboEdit->isHidden()) // take text from ComboBox ?
|
||||
edit->setText(ComboEdit->currentText());
|
||||
@ -720,7 +722,7 @@ void ComponentDialog::slotApplyProperty()
|
||||
}
|
||||
|
||||
// step to next item
|
||||
if ( row < prop->rowCount()) {
|
||||
if ( row < prop->rowCount()-1) {
|
||||
prop->setCurrentItem(prop->item(row+1,0));
|
||||
slotSelectProperty(prop->item(row+1,0));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user