diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-04-20 05:44:54 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-04-20 05:44:54 +0800 |
commit | 6a49b7889388637b52d52403638c0d47c982e91c (patch) | |
tree | 08eb43100941ed8f3c3f4359cb35b92a7955fb6b /composer/e-msg-composer.c | |
parent | 24f5407f6974c1125adae6ae03277e6f47982b6a (diff) | |
download | gsoc2013-evolution-6a49b7889388637b52d52403638c0d47c982e91c.tar.gz gsoc2013-evolution-6a49b7889388637b52d52403638c0d47c982e91c.tar.zst gsoc2013-evolution-6a49b7889388637b52d52403638c0d47c982e91c.zip |
Use the E_ICON_SIZE enums rather than specifying an absolute pixel size.
2004-04-19 Jeffrey Stedfast <fejj@ximian.com>
* e-msg-composer.c (create_composer): Use the E_ICON_SIZE enums
rather than specifying an absolute pixel size.
svn path=/trunk/; revision=25526
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r-- | composer/e-msg-composer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 52eb68dd16..f17c3c5a7d 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -3296,8 +3296,8 @@ create_composer (int visible_mask) gtk_misc_set_alignment (GTK_MISC (composer->attachment_expander_label), 0.0, 0.5); gtk_misc_set_alignment (GTK_MISC (composer->attachment_expander_num), 1.0, 0.5); expander_hbox = gtk_hbox_new (FALSE, 0); - - attachment_pixbuf = e_icon_factory_get_icon ("stock_attach", 16); + + attachment_pixbuf = e_icon_factory_get_icon ("stock_attach", E_ICON_SIZE_MENU); composer->attachment_expander_icon = gtk_image_new_from_pixbuf (attachment_pixbuf); gtk_misc_set_alignment (GTK_MISC (composer->attachment_expander_icon), 1, 0.5); gtk_widget_set_size_request (composer->attachment_expander_icon, 100, -1); |