13
0

Fix crash on close.

git-svn-id: svn://localhost/ardour2/branches/3.0@12719 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2012-06-14 09:48:49 +00:00
parent 33ba28e2e2
commit 34cd0f8419

View File

@ -969,6 +969,10 @@ PortMatrix::port_connected_or_disconnected ()
void
PortMatrix::update_tab_highlighting ()
{
if (!_session) {
return;
}
for (int i = 0; i < 2; ++i) {
Gtk::Notebook* notebook = row_index() == i ? &_vnotebook : &_hnotebook;