diff options
Diffstat (limited to 'src/plugins/fs/namespace.c')
-rw-r--r-- | src/plugins/fs/namespace.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/plugins/fs/namespace.c b/src/plugins/fs/namespace.c index f812488e..3b6e708f 100644 --- a/src/plugins/fs/namespace.c +++ b/src/plugins/fs/namespace.c | |||
@@ -99,6 +99,8 @@ static GtkWidget * makeNamespaceFrame(GtkWidget ** treeview, | |||
99 | G_TYPE_POINTER); /* META */ | 99 | G_TYPE_POINTER); /* META */ |
100 | gtk_tree_view_set_model(GTK_TREE_VIEW(resultList), | 100 | gtk_tree_view_set_model(GTK_TREE_VIEW(resultList), |
101 | GTK_TREE_MODEL(model)); | 101 | GTK_TREE_MODEL(model)); |
102 | gtk_tree_selection_set_mode(gtk_tree_view_get_selection(GTK_TREE_VIEW(resultList)), | ||
103 | GTK_SELECTION_MULTIPLE); | ||
102 | renderer = gtk_cell_renderer_text_new(); | 104 | renderer = gtk_cell_renderer_text_new(); |
103 | col = gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(resultList), | 105 | col = gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(resultList), |
104 | -1, | 106 | -1, |
@@ -915,8 +917,8 @@ void on_namespaceInsertButton_clicked_fs(GtkWidget * dummy1, | |||
915 | "metaDataTreeView", | 917 | "metaDataTreeView", |
916 | "namespaceInsertPreview"); | 918 | "namespaceInsertPreview"); |
917 | cls.anonymityLevel | 919 | cls.anonymityLevel |
918 | = getAnonymityLevel(metaXML, | 920 | = getSpinButtonValue(metaXML, |
919 | "anonymitySpinButton"); | 921 | "anonymitySpinButton"); |
920 | nameLine = glade_xml_get_widget(metaXML, | 922 | nameLine = glade_xml_get_widget(metaXML, |
921 | "namespaceContentIdentifierEntry"); | 923 | "namespaceContentIdentifierEntry"); |
922 | identifierName = gtk_entry_get_text(GTK_ENTRY(nameLine)); | 924 | identifierName = gtk_entry_get_text(GTK_ENTRY(nameLine)); |
@@ -1383,6 +1385,8 @@ void fs_namespace_start(struct GE_Context * e, | |||
1383 | G_TYPE_POINTER); /* uri */ | 1385 | G_TYPE_POINTER); /* uri */ |
1384 | gtk_tree_view_set_model(GTK_TREE_VIEW(contentList), | 1386 | gtk_tree_view_set_model(GTK_TREE_VIEW(contentList), |
1385 | GTK_TREE_MODEL(model)); | 1387 | GTK_TREE_MODEL(model)); |
1388 | gtk_tree_selection_set_mode(gtk_tree_view_get_selection(GTK_TREE_VIEW(contentList)), | ||
1389 | GTK_SELECTION_MULTIPLE); | ||
1386 | renderer = gtk_cell_renderer_text_new(); | 1390 | renderer = gtk_cell_renderer_text_new(); |
1387 | col = gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(contentList), | 1391 | col = gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(contentList), |
1388 | -1, | 1392 | -1, |