Commit ba3a9f83 authored by Psithief's avatar Psithief
Browse files

Prevent PTColumn from being the last column shown.

P/T column is really narrow. It should go before Card Type, so Card Type can expand into the remaining space.

Improves #1671, assuming I got this correct.

Untested!
parent 535e19f8
......@@ -12,7 +12,7 @@ class FilterTree;
class CardDatabaseModel : public QAbstractListModel {
Q_OBJECT
public:
enum Columns { NameColumn, SetListColumn, ManaCostColumn, CardTypeColumn, PTColumn, CMCColumn };
enum Columns { NameColumn, SetListColumn, ManaCostColumn, PTColumn, CardTypeColumn, CMCColumn };
enum Role { SortRole=Qt::UserRole };
CardDatabaseModel(CardDatabase *_db, QObject *parent = 0);
~CardDatabaseModel();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment