NOISSUE Replace Quality with Completeness in language widget

Completeness does no imply quality.
This commit is contained in:
Petr Mrázek
2019-01-14 01:36:04 +01:00
parent c08053d8b8
commit 7436c94976
2 changed files with 6 additions and 15 deletions

View File

@ -349,11 +349,6 @@ bool SimpleModList::dropMimeData(const QMimeData* data, Qt::DropAction action, i
// files dropped from outside?
if (data->hasUrls())
{
bool was_watching = is_watching;
if (was_watching)
{
stopWatching();
}
auto urls = data->urls();
for (auto url : urls)
{
@ -366,10 +361,6 @@ bool SimpleModList::dropMimeData(const QMimeData* data, Qt::DropAction action, i
// FIXME: handle errors here
installMod(url.toLocalFile());
}
if (was_watching)
{
startWatching();
}
return true;
}
return false;