mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 17:30:05 +00:00
Moved name to end of model to make it take all remaining space
This commit is contained in:
parent
aec937aa97
commit
0c20e49831
2 changed files with 5 additions and 9 deletions
|
|
@ -14,9 +14,9 @@ class MarkerModel : public QAbstractTableModel
|
|||
public:
|
||||
enum class Column : int
|
||||
{
|
||||
Name = 0,
|
||||
Latitude = 1,
|
||||
Longitude = 2
|
||||
Latitude = 0,
|
||||
Longitude = 1,
|
||||
Name = 2,
|
||||
};
|
||||
|
||||
explicit MarkerModel(QObject* parent = nullptr);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue