From 03ee407c346845484629c2a6afef39a13f0b9a3d Mon Sep 17 00:00:00 2001
From: isanae <14251494+isanae@users.noreply.github.com>
Date: Wed, 5 Feb 2020 20:23:53 -0500
Subject: 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
---
src/mainwindow.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
(limited to 'src/mainwindow.h')
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 608bfa64..afc434ef 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -21,7 +21,6 @@ along with Mod Organizer. If not, see .
#define MAINWINDOW_H
#include "bsafolder.h"
-#include "browserdialog.h"
#include "delayedfilewriter.h"
#include "errorcodes.h"
#include "imoinfo.h"
@@ -39,6 +38,7 @@ class CategoryFactory;
class OrganizerCore;
class FilterList;
class DataTab;
+class BrowserDialog;
class PluginListSortProxy;
namespace BSA { class Archive; }
@@ -341,7 +341,7 @@ private:
QString m_CurrentLanguage;
std::vector m_Translators;
- BrowserDialog m_IntegratedBrowser;
+ std::unique_ptr m_IntegratedBrowser;
QFileSystemWatcher m_SavesWatcher;
--
cgit v1.3.1