1.0.0.14 Release

--Bug fixes
 -File saving was broken.

--Code changes
 -File saving and opening dialogs were shared between a single object which was causing trouble. Make them all use their own objects.
This commit is contained in:
Person
2018-10-20 23:08:20 -07:00
parent 6d548a0023
commit 2089363bb0
3 changed files with 74 additions and 73 deletions

View File

@ -554,7 +554,9 @@ private:
//Files.
#ifndef __APPLE__
QFileDialog* m_FileDialog = nullptr;
QFileDialog* m_SaveFileDialog = nullptr;
QFileDialog* m_SaveImageDialog = nullptr;
QFileDialog* m_OpenFileDialog = nullptr;
QFileDialog* m_FolderDialog = nullptr;
#endif
QssDialog* m_QssDialog = nullptr;