Fixed a bug where the line selection column of a view would not be

flagged as finished
This commit is contained in:
Celine Mercier
2018-05-17 15:17:19 +02:00
parent 62614a8538
commit 4aef20add8

View File

@ -1130,6 +1130,14 @@ static int finish_view(Obiview_p view)
(column->header)->finished = true; (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 // Flag the view as finished
(view->infos)->finished = true; (view->infos)->finished = true;