mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 09:23:17 +02:00
drop empty parts when splitting script whitelist
This commit is contained in:
parent
2fc6b4b0af
commit
d4a161041e
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ EntityTree::~EntityTree() {
|
|||
}
|
||||
|
||||
void EntityTree::setEntityScriptSourceWhitelist(const QString& entityScriptSourceWhitelist) {
|
||||
_entityScriptSourceWhitelist = entityScriptSourceWhitelist.split(',');
|
||||
_entityScriptSourceWhitelist = entityScriptSourceWhitelist.split(',', QString::SkipEmptyParts);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue