summaryrefslogtreecommitdiff
path: root/src/libs/collect.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/collect.c')
-rw-r--r--src/libs/collect.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/libs/collect.c b/src/libs/collect.c
index 4ae886881..69befd56e 100644
--- a/src/libs/collect.c
+++ b/src/libs/collect.c
@@ -1178,17 +1178,6 @@ static void list_view(dt_lib_collect_rule_t *dr)
"WHERE %s GROUP BY ROUND(aspect_ratio,1)", where_ext);
break;
- case DT_COLLECTION_PROP_LOCAL_COPY: // local copy, 2 hardcoded alternatives
- gtk_list_store_append(GTK_LIST_STORE(model), &iter);
- gtk_list_store_set(GTK_LIST_STORE(model), &iter, DT_LIB_COLLECT_COL_TEXT, _("copied locally"),
- DT_LIB_COLLECT_COL_ID, 0, DT_LIB_COLLECT_COL_TOOLTIP, _("copied locally"),
- DT_LIB_COLLECT_COL_VISIBLE, TRUE, DT_LIB_COLLECT_COL_PATH, _("copied locally"), -1);
- gtk_list_store_append(GTK_LIST_STORE(model), &iter);
- gtk_list_store_set(GTK_LIST_STORE(model), &iter, DT_LIB_COLLECT_COL_TEXT, _("not copied locally"),
- DT_LIB_COLLECT_COL_ID, 1, DT_LIB_COLLECT_COL_TOOLTIP, _("not copied locally"),
- DT_LIB_COLLECT_COL_VISIBLE, TRUE, DT_LIB_COLLECT_COL_PATH, _("not copied locally"), -1);
- break;
-
case DT_COLLECTION_PROP_COLORLABEL: // colorlabels
g_snprintf(query, sizeof(query), "SELECT CASE "
"color WHEN 0 THEN '%s' WHEN 1 THEN '%s' WHEN 2 THEN '%s' WHEN 3 THEN '%s' WHEN 4 THEN '%s' "