[gnome-control-center/wip/oholy/avatar-size: 1/2] user-accounts: Allow bigger custom avatars
- From: Ondrej Holy <oholy src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-control-center/wip/oholy/avatar-size: 1/2] user-accounts: Allow bigger custom avatars
- Date: Wed, 6 Feb 2019 09:51:50 +0000 (UTC)
commit 6e86a5922cb6152696401a57e2e0cf24c9e31dcd
Author: Ondrej Holy <oholy redhat com>
Date: Wed Feb 7 15:41:38 2018 +0100
user-accounts: Allow bigger custom avatars
Default set of avatars uses 512x512 currently. However, custom avatars
from file, or webcam are always scaled down to 96x96. Let's increase this
also to 512x512. This change should be safe, because theoretical maximal
file size is 1 MB, which is equal to accountsservice limit.
https://bugzilla.gnome.org/show_bug.cgi?id=792243
panels/user-accounts/cc-avatar-chooser.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
---
diff --git a/panels/user-accounts/cc-avatar-chooser.c b/panels/user-accounts/cc-avatar-chooser.c
index 7b568ce6e..b1e9f6593 100644
--- a/panels/user-accounts/cc-avatar-chooser.c
+++ b/panels/user-accounts/cc-avatar-chooser.c
@@ -41,7 +41,8 @@
#include "cc-crop-area.h"
#define ROW_SPAN 5
-#define AVATAR_PIXEL_SIZE 80
+#define AVATAR_CHOOSER_PIXEL_SIZE 80
+#define PIXEL_SIZE 512
struct _CcAvatarChooser {
GtkPopover parent;
@@ -119,7 +120,7 @@ crop_dialog_response (GtkWidget *dialog,
}
pb = cc_crop_area_get_picture (CC_CROP_AREA (self->crop_area));
- pb2 = gdk_pixbuf_scale_simple (pb, 96, 96, GDK_INTERP_BILINEAR);
+ pb2 = gdk_pixbuf_scale_simple (pb, PIXEL_SIZE, PIXEL_SIZE, GDK_INTERP_BILINEAR);
set_user_icon_data (self->user, pb2);
@@ -320,7 +321,7 @@ webcam_response_cb (GtkDialog *dialog,
GdkPixbuf *pb, *pb2;
g_object_get (G_OBJECT (dialog), "pixbuf", &pb, NULL);
- pb2 = gdk_pixbuf_scale_simple (pb, 96, 96, GDK_INTERP_BILINEAR);
+ pb2 = gdk_pixbuf_scale_simple (pb, PIXEL_SIZE, PIXEL_SIZE, GDK_INTERP_BILINEAR);
set_user_icon_data (self->user, pb2);
@@ -402,7 +403,7 @@ create_face_widget (gpointer item,
icon = g_file_icon_new (G_FILE (item));
image = gtk_image_new_from_gicon (icon, GTK_ICON_SIZE_DIALOG);
- gtk_image_set_pixel_size (GTK_IMAGE (image), AVATAR_PIXEL_SIZE);
+ gtk_image_set_pixel_size (GTK_IMAGE (image), AVATAR_CHOOSER_PIXEL_SIZE);
g_object_unref (icon);
gtk_widget_show (image);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]