From 253898e9b5de909cc841ac65f8d08838c186bf99 Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Thu, 11 Sep 2014 07:55:35 -0400 Subject: [PATCH] gui: Set tab size and runtime on startup This used to happen by itself, but changing the order of how tabs are initialized broke this. Signed-off-by: Anna Schumaker --- gui/tabs.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gui/tabs.cpp b/gui/tabs.cpp index 053a0dad..db0b5b7c 100644 --- a/gui/tabs.cpp +++ b/gui/tabs.cpp @@ -59,6 +59,9 @@ void Tab :: tab_finish_init() columns[i]->signal_clicked().connect(sigc::bind ( sigc::mem_fun(*this, &Tab::on_column_clicked), i)); } + + tab_set_size(); + tab_runtime_changed(); }