Disable "chat history size" box if the "Show history" checkbox is false.

cusax-fix
Yana Stamcheva 18 years ago
parent 6001ca90fb
commit eb93b6cf10

@ -242,6 +242,11 @@ private void initDefaults()
historySizeSpinner.setEnabled(false);
}
if (!ConfigurationManager.isHistoryShown())
{
historySizeSpinner.setEnabled(false);
}
sendMessageComboBox.setSelectedItem(
ConfigurationManager.getSendMessageCommand());

Loading…
Cancel
Save