mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Fix enabled data files pairs
This commit is contained in:
parent
c4f1495e32
commit
62f7cb881d
@ -290,26 +290,15 @@ void ImportDialog::slotImport()
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
void ImportDialog::slotType()
|
||||
void ImportDialog::slotType(int index)
|
||||
{
|
||||
auto index = OutType->currentIndex();
|
||||
switch(index) {
|
||||
case 0:
|
||||
case 3:
|
||||
case 4:
|
||||
case 5:
|
||||
OutputData->setEnabled(false);
|
||||
OutputLabel->setEnabled(false);
|
||||
break;
|
||||
case 1:
|
||||
case 2:
|
||||
//auto index = OutType->currentIndex();
|
||||
if (index == 2) {
|
||||
OutputData->setEnabled(true);
|
||||
OutputLabel->setEnabled(true);
|
||||
break;
|
||||
default:
|
||||
} else {
|
||||
OutputData->setEnabled(false);
|
||||
OutputLabel->setEnabled(false);
|
||||
break;
|
||||
}
|
||||
|
||||
if (index == 3) {
|
||||
@ -441,7 +430,7 @@ void ImportDialog::slotValidateOutput()
|
||||
default:
|
||||
break;
|
||||
}
|
||||
slotType();
|
||||
slotType(OutType->currentIndex());
|
||||
}
|
||||
|
||||
|
||||
|
@ -49,7 +49,7 @@ private slots:
|
||||
void slotAbort();
|
||||
void slotBrowse();
|
||||
void slotSaveBrowse();
|
||||
void slotType();
|
||||
void slotType(int index);
|
||||
void slotValidateInput();
|
||||
void slotValidateOutput();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user