[nautilus/wip/antoniof/properties-followup: 5/6] properties-window: Show bytes in tooltip
- From: António Fernandes <antoniof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus/wip/antoniof/properties-followup: 5/6] properties-window: Show bytes in tooltip
- Date: Thu, 4 Aug 2022 17:05:39 +0000 (UTC)
commit 3b44c1b239f6cf9fbdbd7941b2b43c4d0ad3fb78
Author: António Fernandes <antoniof gnome org>
Date: Thu Aug 4 13:15:02 2022 +0100
properties-window: Show bytes in tooltip
G_FORMAT_SIZE_LONG_FORMAT is, well, long. And redundact.
But, oh, well, in case someone really wants to know bytes,
we keep it as a tooltip.
src/nautilus-file.c | 5 ++++-
src/nautilus-properties-window.c | 10 +++++++++-
2 files changed, 13 insertions(+), 2 deletions(-)
---
diff --git a/src/nautilus-file.c b/src/nautilus-file.c
index d369b8433..9ad341983 100644
--- a/src/nautilus-file.c
+++ b/src/nautilus-file.c
@@ -6942,7 +6942,10 @@ nautilus_file_get_size_as_string_with_real_size (NautilusFile *file)
return NULL;
}
- return g_format_size_full (file->details->size, G_FORMAT_SIZE_LONG_FORMAT);
+ return g_strdup_printf (ngettext ("%lu byte",
+ "%lu bytes",
+ file->details->size),
+ file->details->size);
}
diff --git a/src/nautilus-properties-window.c b/src/nautilus-properties-window.c
index 7e5ccb191..97ad5036b 100644
--- a/src/nautilus-properties-window.c
+++ b/src/nautilus-properties-window.c
@@ -1385,6 +1385,14 @@ value_field_update (GtkLabel *label,
gtk_widget_set_tooltip_text (GTK_WIDGET (label), mime_type);
}
+ else if (g_str_equal (attribute_name, "size"))
+ {
+ g_autofree char *size_detail = NULL;
+
+ size_detail = file_list_get_string_attribute (file_list, "size_detail");
+
+ gtk_widget_set_tooltip_text (GTK_WIDGET (label), size_detail);
+ }
gtk_label_set_text (label, attribute_value);
}
@@ -2548,7 +2556,7 @@ setup_basic_page (NautilusPropertiesWindow *self)
else
{
gtk_widget_show (self->size_value_label);
- add_updatable_label (self, self->size_value_label, "size_detail");
+ add_updatable_label (self, self->size_value_label, "size");
}
if (should_show_location_info (self))
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]