Show syncing status in statusbar

This commit is contained in:
bdr
2018-10-17 20:05:54 -07:00
parent 3943325751
commit 5859c3669b
3 changed files with 47 additions and 19 deletions

View File

@@ -22,6 +22,9 @@ public:
bool isTestnet();
void setTestnet(bool isTestnet);
bool isSyncing();
void setSyncing(bool syncing);
private:
// This class can only be accessed through Settings::getInstance()
Settings() = default;
@@ -36,6 +39,7 @@ private:
QString overridePort;
bool _isTestnet = false;
bool _isSyncing = false;
};
#endif // SETTINGS_H