diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2012-08-29 23:24:25 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2012-09-01 02:34:02 +0800 |
commit | 3a558c289b0dd42b18f12aeb1ef5d5de0e82b47e (patch) | |
tree | 30005187480a42e033912568074c6a70b4c8e331 | |
parent | 24a912ed20ef0166222112a7327662e71be9a9c5 (diff) | |
download | gsoc2013-epiphany-3a558c289b0dd42b18f12aeb1ef5d5de0e82b47e.tar.gz gsoc2013-epiphany-3a558c289b0dd42b18f12aeb1ef5d5de0e82b47e.tar.zst gsoc2013-epiphany-3a558c289b0dd42b18f12aeb1ef5d5de0e82b47e.zip |
ephy-snapshot-service: change the size of the thumbnails
Squared snapshots are not that great, so use a 4:3 aspect ratio.
-rw-r--r-- | lib/ephy-snapshot-service.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ephy-snapshot-service.h b/lib/ephy-snapshot-service.h index 4de9745aa..deab02071 100644 --- a/lib/ephy-snapshot-service.h +++ b/lib/ephy-snapshot-service.h @@ -57,8 +57,8 @@ struct _EphySnapshotServiceClass }; /* Values taken from the Web mockups. */ -#define EPHY_THUMBNAIL_WIDTH 172 -#define EPHY_THUMBNAIL_HEIGHT 172 +#define EPHY_THUMBNAIL_WIDTH 180 +#define EPHY_THUMBNAIL_HEIGHT 135 typedef void (* EphySnapshotServiceCallback) (GdkPixbuf *snapshot, gpointer user_data); |