mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Add symbols group; fix warning on empty sym file
This commit is contained in:
parent
fe130581b2
commit
0b477eac6d
@ -333,6 +333,10 @@ void SpiceLibCompDialog::slotSetSymbol()
|
||||
listSymPattern->setEnabled(false);
|
||||
edtSymFile->setEnabled(true);
|
||||
btnOpenSym->setEnabled(true);
|
||||
if (edtSymFile->text().isEmpty()) {
|
||||
symbolPinsCount = 0;
|
||||
return;
|
||||
}
|
||||
result = symbol->loadSymFile(edtSymFile->text());
|
||||
symbolPinsCount = symbol->getPortsNumber();
|
||||
}
|
||||
|
@ -84,6 +84,7 @@ ProjectView::refresh()
|
||||
APPEND_ROW(m_model, tr("VHDL") );
|
||||
APPEND_ROW(m_model, tr("Octave") );
|
||||
APPEND_ROW(m_model, tr("Schematics") );
|
||||
APPEND_ROW(m_model, tr("Symbols") );
|
||||
APPEND_ROW(m_model, tr("SPICE") );
|
||||
APPEND_ROW(m_model, tr("Others") );
|
||||
|
||||
@ -139,13 +140,14 @@ ProjectView::refresh()
|
||||
}
|
||||
APPEND_CHILD(6, columnData);
|
||||
}
|
||||
}
|
||||
else if ((extName == "cir") || (extName=="ckt") ||
|
||||
(extName=="sp")) {
|
||||
} else if (extName == "sym") {
|
||||
APPEND_CHILD(7,columnData);
|
||||
} else if ((extName == "cir") || (extName=="ckt") ||
|
||||
(extName=="sp")) {
|
||||
APPEND_CHILD(8,columnData);
|
||||
}
|
||||
else {
|
||||
APPEND_CHILD(8, columnData);
|
||||
APPEND_CHILD(9, columnData);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user