-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) | |||
38 | { | 38 | { |
39 | int i = vis_sel_set.id - 1; | 39 | int i = vis_sel_set.id - 1; |
40 | 40 | ||
41 | S.selection.set[i] = true; | 41 | /* |
42 | * Loaded sets do not automatically become part of the current | ||
43 | * selection, however they could be added to it. This is an | ||
44 | * issue to work out in the interaction. | ||
45 | */ | ||
46 | // S.selection.set[i] = true; | ||
47 | |||
42 | S.base_colors_data[i][0] = vis_sel_set.r; | 48 | S.base_colors_data[i][0] = vis_sel_set.r; |
43 | S.base_colors_data[i][1] = vis_sel_set.g; | 49 | S.base_colors_data[i][1] = vis_sel_set.g; |
44 | S.base_colors_data[i][2] = vis_sel_set.b; | 50 | S.base_colors_data[i][2] = vis_sel_set.b; |