From d0946708247803122b4d974cf5f249213169e373 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Wed, 20 Nov 2013 13:24:57 +0200 Subject: [PATCH] Avoid segfault with a single multi-column item --- source/list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/list.cpp b/source/list.cpp index 7be9363..2a0aa06 100644 --- a/source/list.cpp +++ b/source/list.cpp @@ -436,7 +436,7 @@ void List::MultiColumnItem::on_style_change() mci->set_widths(self_widths); } else - set_widths(widths); + set_widths(self_widths); } -- 2.43.0