From 487f50bc89688dc0fcd41fedf1c2cf8f8cd089fb Mon Sep 17 00:00:00 2001
From: Michael 'PoempelFox' Meier <git@mulder.franken.de>
Date: Mon, 17 Dec 2018 23:13:35 +0100
Subject: [PATCH] use a more sane default width for the layerlist table.

---
 layerlist.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/layerlist.cpp b/layerlist.cpp
index 1454329..408031d 100644
--- a/layerlist.cpp
+++ b/layerlist.cpp
@@ -20,6 +20,8 @@ LayerList::LayerList(QVector<GPXTrack *> &tracks, QWidget *parent) :
     connect(ui->editButton, SIGNAL(clicked()), this, SLOT(editButtonClicked()));
     connect(ui->listTable, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(listDoubleClicked(QModelIndex)));
     connect(llm, SIGNAL(wasedited()), this, SLOT(tracklistchanged()));
+    ui->listTable->setColumnWidth(0, 25);
+    ui->listTable->setColumnWidth(2, 35);
 }
 
 LayerList::~LayerList()
-- 
GitLab