From: Wladimir J. van der Laan Date: Thu, 7 Jul 2011 19:25:17 +0000 (+0200) Subject: "Status" doesn't fit into narrow first column in transaction history, make the header... X-Git-Tag: v0.4.0-unstable~226^2~57^2~149 X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=610121480cc1cd66c08f54c7e67a5440892cc6a2;p=novacoin.git "Status" doesn't fit into narrow first column in transaction history, make the header empty --- diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index 6a7f7aa..a529dad 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -208,7 +208,7 @@ TransactionTableModel::TransactionTableModel(CWallet* wallet, WalletModel *paren walletModel(parent), priv(new TransactionTablePriv(wallet, this)) { - columns << tr("Status") << tr("Date") << tr("Type") << tr("Address") << tr("Amount"); + columns << QString() << tr("Date") << tr("Type") << tr("Address") << tr("Amount"); priv->refreshWallet();