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 <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2014-09-11 07:55:35 -04:00
parent 9b98788106
commit 253898e9b5
1 changed files with 3 additions and 0 deletions

View File

@ -59,6 +59,9 @@ void Tab :: tab_finish_init()
columns[i]->signal_clicked().connect(sigc::bind<unsigned int> (
sigc::mem_fun(*this, &Tab::on_column_clicked), i));
}
tab_set_size();
tab_runtime_changed();
}