summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Hertzfeld <andy@src.gnome.org>2001-03-19 22:59:06 +0000
committerAndy Hertzfeld <andy@src.gnome.org>2001-03-19 22:59:06 +0000
commit27222cafc85f5c408cedf7099a5f21c68dc3436d (patch)
treefb5fd29f65f4d0d50e01ab04c2cea8d579e34f86
parentab5a9c0b2d6a89afed44a00d61e89a20f1a584c2 (diff)
downloadnautilus-27222cafc85f5c408cedf7099a5f21c68dc3436d.tar.gz
made it support intrinsic property emblems as well as keywords
* src/file-manager/fm-icon-view.c: (get_icon_annotation_callback): made it support intrinsic property emblems as well as keywords * src/nautilus-property-browser.c: (nautilus_property_browser_update_contents): added margin to property browser like Arlo wants; this didn't quite make it into 1.0; I will also check this into 1.0.2
-rw-r--r--ChangeLog10
-rw-r--r--src/file-manager/fm-icon-view.c2
-rw-r--r--src/nautilus-property-browser.c2
3 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 826b8b64e..f2acbdb1f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2001-03-19 Andy Hertzfeld <andy@eazel.com>
+
+ * src/file-manager/fm-icon-view.c: (get_icon_annotation_callback):
+ made it support intrinsic property emblems as well as keywords
+
+ * src/nautilus-property-browser.c:
+ (nautilus_property_browser_update_contents):
+ added margin to property browser like Arlo wants; this didn't
+ quite make it into 1.0; I will also check this into 1.0.2
+
2001-03-18 Andy Hertzfeld <andy@eazel.com>
restructured annotation; made annotation for emblems work;
diff --git a/src/file-manager/fm-icon-view.c b/src/file-manager/fm-icon-view.c
index 7ba06978b..302feb698 100644
--- a/src/file-manager/fm-icon-view.c
+++ b/src/file-manager/fm-icon-view.c
@@ -1848,7 +1848,7 @@ get_icon_annotation_callback (NautilusIconContainer *container,
GList *keyword_list, *selected_keyword;
char *keyword;
- keyword_list = nautilus_file_get_keywords (file);
+ keyword_list = nautilus_file_get_emblem_names (file);
if (keyword_list == NULL) {
return NULL;
}
diff --git a/src/nautilus-property-browser.c b/src/nautilus-property-browser.c
index 943f017fe..d7ae94dd7 100644
--- a/src/nautilus-property-browser.c
+++ b/src/nautilus-property-browser.c
@@ -1952,6 +1952,8 @@ nautilus_property_browser_update_contents (NautilusPropertyBrowser *property_bro
/* allocate a table to hold the content widgets */
property_browser->details->content_table = nautilus_image_table_new (TRUE);
+ gtk_container_set_border_width (GTK_CONTAINER (property_browser->details->content_table), 8);
+
nautilus_wrap_table_set_x_spacing (NAUTILUS_WRAP_TABLE (property_browser->details->content_table),
IMAGE_TABLE_X_SPACING);
nautilus_wrap_table_set_y_spacing (NAUTILUS_WRAP_TABLE (property_browser->details->content_table),