author | Don Pellegrino <don@drexel.edu> | 2009-07-09 18:52:08 (GMT) |
---|---|---|
committer | Don Pellegrino <don@drexel.edu> | 2009-07-09 18:52:08 (GMT) |
commit | 4115822c71320bb42c928f94aa56cd03dfe6bdd6 (patch) (side-by-side diff) | |
tree | 4078a0107223f51e68b1de7321ae44777523b617 | |
parent | c324d26c18be3f683ce3081ef770293271bd5065 (diff) | |
download | exp005-4115822c71320bb42c928f94aa56cd03dfe6bdd6.zip exp005-4115822c71320bb42c928f94aa56cd03dfe6bdd6.tar.gz exp005-4115822c71320bb42c928f94aa56cd03dfe6bdd6.tar.bz2 |
Sets loaded from the database are not added to the current selection
anymore as this was confusing.
-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; |