Fix a small glitch

When choosing a code language that has dialects in the languages
combo box, the dialects combo gets activated also when minted is
in use. However, minted does not support the concept of dialects
and the combo should not be enabled. This is harmless because the
dialects are simply ignored and the dialects status is restored
after apply, but it may fool the user in thinking that a dialect
can be actually selected. So, always disable it with minted.
This commit is contained in:
Enrico Forestieri 2017-06-07 15:31:13 +02:00
parent 18fb9cd7f9
commit aae04d25b9

View File

@ -433,7 +433,8 @@ void GuiListings::on_languageCO_currentIndexChanged(int index)
}
}
dialectCO->setCurrentIndex(default_dialect);
dialectCO->setEnabled(dialectCO->count() > 1);
dialectCO->setEnabled(dialectCO->count() > 1
&& !buffer().params().use_minted);
}