From 4115822c71320bb42c928f94aa56cd03dfe6bdd6 Mon Sep 17 00:00:00 2001 From: Don Pellegrino Date: Thu, 09 Jul 2009 18:52:08 +0000 Subject: Sets loaded from the database are not added to the current selection anymore as this was confusing. --- 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; -- cgit v0.8.3.1-22-g547a