call updateSelectedEvents only once at a time
This commit is contained in:
parent
1ed2f1d206
commit
5309eb5f0e
4 changed files with 31576 additions and 3 deletions
|
@ -40,7 +40,7 @@ public:
|
|||
class ParseUtil
|
||||
{
|
||||
public:
|
||||
ParseUtil() { };
|
||||
ParseUtil();
|
||||
void set_root(const QString &dir);
|
||||
static QString readTextFile(const QString &path);
|
||||
static int textFileLineCount(const QString &path);
|
||||
|
|
31571
include/lib/simdjson.h
Normal file
31571
include/lib/simdjson.h
Normal file
File diff suppressed because it is too large
Load diff
|
@ -19,6 +19,10 @@ static QMap<QString, QString> fileCache;
|
|||
|
||||
using OrderedJson = poryjson::Json;
|
||||
|
||||
ParseUtil::ParseUtil() {
|
||||
fileCache.clear();
|
||||
}
|
||||
|
||||
void ParseUtil::set_root(const QString &dir) {
|
||||
this->root = dir;
|
||||
}
|
||||
|
|
|
@ -1503,8 +1503,6 @@ void Editor::displayMapEvents() {
|
|||
}
|
||||
//objects_group->setFiltersChildEvents(false);
|
||||
events_group->setHandlesChildEvents(false);
|
||||
|
||||
emit objectsChanged();
|
||||
}
|
||||
|
||||
DraggablePixmapItem *Editor::addMapEvent(Event *event) {
|
||||
|
|
Loading…
Reference in a new issue