diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-02-05 20:23:53 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-02-05 20:23:53 -0500 |
| commit | 03ee407c346845484629c2a6afef39a13f0b9a3d (patch) | |
| tree | 1057bbbefcfa0cf1518c97b3695dcf0f2f60fd9b /src/loglist.h | |
| parent | ea0429342ade6e908807ff1faef7c8f7e5e46b75 (diff) | |
fixed LogModel not being thread safe
optimizations:
- create BrowserDialog on demand
- scroll to bottom of log in a timer, coalesces fast logging
- disabled md5 of dlls
Diffstat (limited to 'src/loglist.h')
| -rw-r--r-- | src/loglist.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/loglist.h b/src/loglist.h index 36671be4..56b95d65 100644 --- a/src/loglist.h +++ b/src/loglist.h @@ -48,9 +48,6 @@ protected: QVariant headerData(
int section, Qt::Orientation ori, int role=Qt::DisplayRole) const override;
-signals:
- void entryAdded(MOBase::log::Entry e);
-
private:
std::deque<MOBase::log::Entry> m_entries;
@@ -75,7 +72,10 @@ public: private:
OrganizerCore* m_core;
+ QTimer m_timer;
+
void onContextMenu(const QPoint& pos);
+ void onNewEntry();
};
#endif // LOGBUFFER_H
|
