mirror of https://github.com/PCSX2/pcsx2.git
GUI: Allow memcard names shorter than 4
This commit is contained in:
parent
9a323a9a8d
commit
8ec736789c
|
@ -95,7 +95,7 @@ void CreateMemoryCardDialog::restoreDefaults()
|
|||
|
||||
void CreateMemoryCardDialog::updateState()
|
||||
{
|
||||
const bool okay = (m_ui.name->text().length() > 4);
|
||||
const bool okay = (m_ui.name->text().length() > 0);
|
||||
|
||||
m_ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(okay);
|
||||
#ifdef _WIN32
|
||||
|
|
Loading…
Reference in New Issue