"Status" doesn't fit into narrow first column in transaction history, make the header empty

This commit is contained in:
Wladimir J. van der Laan 2011-07-07 21:25:17 +02:00
parent ba3d0255fc
commit 610121480c

View file

@ -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();