diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-11-10 22:07:17 +0100 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-11-10 22:08:46 +0100 |
commit | 45a9365f18bed8c95e37300a572adef1e27361d5 (patch) | |
tree | 498a939cc652f9c047381cb662dbfda329f16957 /src/qt/bitcoingui.cpp | |
parent | 91cee34638ae4d5cacb5fadf0adf16428ecf1332 (diff) |
Fix status text after reindex
Diffstat (limited to 'src/qt/bitcoingui.cpp')
-rw-r--r-- | src/qt/bitcoingui.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 9c47daf85d..0198a92c05 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -505,8 +505,10 @@ void BitcoinGUI::setNumBlocks(int count, int nTotalBlocks) case BLOCK_SOURCE_NONE: case BLOCK_SOURCE_NETWORK: importText = tr("Synchronizing with network..."); + break; case BLOCK_SOURCE_DISK: importText = tr("Importing blocks from disk..."); + break; case BLOCK_SOURCE_REINDEX: importText = tr("Reindexing blocks on disk..."); } |