Misc tweaks

* Do not nuke forge META-INF
* Disable inner DnD in mod lists on linux.
This commit is contained in:
Petr Mrázek
2013-08-28 21:52:19 +02:00
parent 93bb7c87e3
commit 78e278c1e3
4 changed files with 25 additions and 9 deletions

View File

@@ -410,9 +410,11 @@ void MainWindow::on_actionRenameInstance_triggered()
if (name.length() > 0)
{
if(ok && name.length() && name.length() <= 25)
if(ok && name.length())
{
m_selectedInstance->setName(name);
renameButton->setText(name);
renameButton->setText(name);
}
}
}