Fix enabled data files pairs

This commit is contained in:
Vadim Kuznetsov 2024-08-26 20:17:12 +03:00
parent c4f1495e32
commit 62f7cb881d
2 changed files with 6 additions and 17 deletions

View File

@ -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());
}

View File

@ -49,7 +49,7 @@ private slots:
void slotAbort();
void slotBrowse();
void slotSaveBrowse();
void slotType();
void slotType(int index);
void slotValidateInput();
void slotValidateOutput();