2006-10-10 [colin] 2.5.3cvs30

* src/prefs_compose_writing.c
		Stop making the page larger than the window
This commit is contained in:
Colin Leroy 2006-10-10 17:01:05 +00:00
parent 48a5427593
commit ff2f208df7
4 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2006-10-10 [colin] 2.5.3cvs30
* src/prefs_compose_writing.c
Stop making the page larger than the window
2006-10-10 [wwp] 2.5.3cvs29
* src/compose.c

View file

@ -1984,3 +1984,4 @@
( cvs diff -u -r 1.115.2.109 -r 1.115.2.110 src/main.c; cvs diff -u -r 1.10.2.24 -r 1.10.2.25 src/prefs_gtk.c; cvs diff -u -r 1.1.2.3 -r 1.1.2.4 src/plugins/pgpcore/pgp_viewer.c; cvs diff -u -r 1.1.2.29 -r 1.1.2.30 src/plugins/pgpcore/sgpgme.c; ) > 2.5.3cvs27.patchset
( cvs diff -u -r 1.47.2.34 -r 1.47.2.35 src/procheader.c; ) > 2.5.3cvs28.patchset
( cvs diff -u -r 1.382.2.313 -r 1.382.2.314 src/compose.c; cvs diff -u -r 1.12.2.31 -r 1.12.2.32 src/prefs_template.c; cvs diff -u -r 1.8.2.9 -r 1.8.2.10 src/quote_fmt.c; cvs diff -u -r 1.5.12.5 -r 1.5.12.6 src/quote_fmt.h; cvs diff -u -r 1.8.2.5 -r 1.8.2.6 src/quote_fmt_lex.l; cvs diff -u -r 1.22.2.23 -r 1.22.2.24 src/quote_fmt_parse.y; ) > 2.5.3cvs29.patchset
( cvs diff -u -r 1.1.2.9 -r 1.1.2.10 src/prefs_compose_writing.c; ) > 2.5.3cvs30.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=5
MICRO_VERSION=3
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=29
EXTRA_VERSION=30
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -187,9 +187,9 @@ void prefs_compose_writing_create_widget(PrefsPage *_page, GtkWindow *window,
gtk_widget_show (optmenu_dnd_insert_or_attach);
menu = gtk_menu_new ();
MENUITEM_ADD (menu, menuitem, _("Ask whether to insert or attach"), COMPOSE_DND_ASK);
MENUITEM_ADD (menu, menuitem, _("Always insert"), COMPOSE_DND_INSERT);
MENUITEM_ADD (menu, menuitem, _("Always attach"), COMPOSE_DND_ATTACH);
MENUITEM_ADD (menu, menuitem, _("Ask"), COMPOSE_DND_ASK);
MENUITEM_ADD (menu, menuitem, _("Insert"), COMPOSE_DND_INSERT);
MENUITEM_ADD (menu, menuitem, _("Attach"), COMPOSE_DND_ATTACH);
gtk_option_menu_set_menu (GTK_OPTION_MENU (optmenu_dnd_insert_or_attach), menu);