diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-08-02 22:03:41 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-08-02 22:03:41 +0200 |
commit | 5762295ec3ce77cda5bfe68cac4cff83ddf4603b (patch) | |
tree | 1f84854cbb8ab7d9ab53d271d1efeaacb30caa9c | |
parent | 10d680cff4d0086bd9621438e5ac04740a38d106 (diff) |
update readme and splash screen text
-rw-r--r-- | README.rst | 4 | ||||
-rw-r--r-- | src/qt/bitcoin.cpp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/README.rst b/README.rst index 3ab370018f..afe8c72036 100644 --- a/README.rst +++ b/README.rst @@ -14,6 +14,8 @@ This has been implemented: - All functionality of the original client, including taskbar icon/menu +- Splash screen + - Tabbed interface - Overview page with current balance, unconfirmed balance, and such @@ -34,6 +36,8 @@ This has been implemented: - Support for English, German and Dutch languages +- Address books and transaction table can be sorted by any column + This has to be done: - Start at system start diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 749afb4bc2..8ae3762f68 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -97,7 +97,7 @@ void InitMessage(const std::string &message) { if(splashref) { - splashref->showMessage(QString::fromStdString(message), Qt::AlignBottom, QColor(255,255,255)); + splashref->showMessage(QString::fromStdString(message), Qt::AlignBottom|Qt::AlignHCenter, QColor(255,255,200)); QApplication::instance()->processEvents(); } } |