mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
Allow table names consisting only of spaces in Edit Table dialog
SQLite allows this, so we should too.
This commit is contained in:
@@ -193,7 +193,7 @@ void EditTableDialog::updateSqlText()
|
||||
|
||||
void EditTableDialog::checkInput()
|
||||
{
|
||||
QString normTableName = ui->editTableName->text().trimmed();
|
||||
QString normTableName = ui->editTableName->text();
|
||||
bool valid = true;
|
||||
if(normTableName.isEmpty())
|
||||
valid = false;
|
||||
|
||||
Reference in New Issue
Block a user