logic: Fixes for release

* Added timeout before checking new version on startscreen
* Fixed size estimation in indexercommand
* Fixed update title when project loading fails
This commit is contained in:
Eberhard Graether
2017-10-13 11:08:38 +02:00
parent 7257ba2722
commit cfb690b035
3 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ IndexerCommand::~IndexerCommand()
size_t IndexerCommand::getByteSize() const
{
size_t size = m_sourceFilePath.str().size();
size_t size = sizeof(std::string) + m_sourceFilePath.str().size();
for (const FilePath& path: m_indexedPaths)
{