summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndrej Holy <oholy@redhat.com>2022-02-11 14:23:44 +0100
committerOndrej Holy <oholy@redhat.com>2022-02-11 14:59:48 +0100
commit63270a75d75d25a15bbbba60b4ff596cc5de7e8b (patch)
treebfa88531c61f31046f97750345d5f6e4161bc96d
parent0ab1ebf6d9b9bb1112025a7f801338459167382e (diff)
downloadnautilus-63270a75d75d25a15bbbba60b4ff596cc5de7e8b.tar.gz
Revert "properties-window: Set Image pixel size"
This reverts commit 25f65bcef7ef63152fcbab3cb849ae6afbd57d3a.
-rw-r--r--src/nautilus-properties-window.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/nautilus-properties-window.c b/src/nautilus-properties-window.c
index 6050683f2..a359a2101 100644
--- a/src/nautilus-properties-window.c
+++ b/src/nautilus-properties-window.c
@@ -456,7 +456,6 @@ update_properties_window_icon (NautilusPropertiesWindow *self)
{
g_autoptr (GdkPaintable) paintable = NULL;
g_autofree char *name = NULL;
- gint pixel_size;
get_image_for_properties_window (self, &name, &paintable);
@@ -465,13 +464,8 @@ update_properties_window_icon (NautilusPropertiesWindow *self)
gtk_window_set_icon_name (GTK_WINDOW (self), name);
}
- pixel_size = MAX (gdk_paintable_get_intrinsic_width (paintable),
- gdk_paintable_get_intrinsic_width (paintable));
-
gtk_image_set_from_paintable (GTK_IMAGE (self->icon_image), paintable);
gtk_image_set_from_paintable (GTK_IMAGE (self->icon_button_image), paintable);
- gtk_image_set_pixel_size (GTK_IMAGE (self->icon_image), pixel_size);
- gtk_image_set_pixel_size (GTK_IMAGE (self->icon_button_image), pixel_size);
}
#if 0 && NAUTILUS_DND_NEEDS_GTK4_REIMPLEMENTATION