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;