Fixed a bug where the line selection column of a view would not be
flagged as finished
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user