-rw-r--r-- | src/controller/selection_from_db.sqc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/controller/selection_from_db.sqc b/src/controller/selection_from_db.sqc index ccefa4a..3bde460 100644 --- a/src/controller/selection_from_db.sqc +++ b/src/controller/selection_from_db.sqc @@ -38,7 +38,13 @@ selection_from_db (void) { int i = vis_sel_set.id - 1; - S.selection.set[i] = true; + /* + * Loaded sets do not automatically become part of the current + * selection, however they could be added to it. This is an + * issue to work out in the interaction. + */ + // S.selection.set[i] = true; + S.base_colors_data[i][0] = vis_sel_set.r; S.base_colors_data[i][1] = vis_sel_set.g; S.base_colors_data[i][2] = vis_sel_set.b; |