From 4aef20add89b7e66fd02f4cc0794f622c5a1cb43 Mon Sep 17 00:00:00 2001 From: Celine Mercier Date: Thu, 17 May 2018 15:17:19 +0200 Subject: [PATCH] Fixed a bug where the line selection column of a view would not be flagged as finished --- src/obiview.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/obiview.c b/src/obiview.c index b22ba4f..2827b17 100644 --- a/src/obiview.c +++ b/src/obiview.c @@ -1130,6 +1130,14 @@ static int finish_view(Obiview_p view) (column->header)->finished = true; } + // Flag the line selection column as finished + if (view->line_selection != NULL) + { + column = view->line_selection; + if (column->writable) + (column->header)->finished = true; + } + // Flag the view as finished (view->infos)->finished = true;