fix crash 317315.

2006-01-21  Diego Gonzalez   <diego@pemas.net>

	* gnome-about-me.c (about_me_foucs_out): fix crash 317315.

2006-01-21  Diego Gonzalez   <diego@pemas.net>

	* gnome-about-me.glade: don't accept tabs in the address fields to
	  preserve the tab navigation on the dialog, as suggested by
	  Sebastien Bacher in bug 317468.
This commit is contained in:
Diego Gonzalez 2006-01-21 16:59:38 +00:00 committed by Diego González
parent 0638a4cf74
commit 0eb8e8b5d6
3 changed files with 15 additions and 2 deletions

View file

@ -1,3 +1,13 @@
2006-01-21 Diego Gonzalez <diego@pemas.net>
* gnome-about-me.c (about_me_foucs_out): fix crash 317315.
2006-01-21 Diego Gonzalez <diego@pemas.net>
* gnome-about-me.glade: don't accept tabs in the address fields to
preserve the tab navigation on the dialog, as suggested by
Sebastien Bacher in bug 317468.
2005-11-21 Matthias Clasen <mclasen@redhat.com>
* gnome-about-me.c: Add a preview to the filechooser used for

View file

@ -214,6 +214,9 @@ about_me_focus_out (GtkWidget *widget, GdkEventFocus *event, GnomeAboutMe *me)
wid = glade_get_widget_name (widget);
if (wid == NULL)
return FALSE;
for (i = 0; ids[i].wid != NULL; i++)
if (g_ascii_strcasecmp (ids[i].wid, wid) == 0)
break;

View file

@ -1298,7 +1298,7 @@
<property name="can_focus">True</property>
<property name="editable">True</property>
<property name="overwrite">False</property>
<property name="accepts_tab">True</property>
<property name="accepts_tab">False</property>
<property name="justification">GTK_JUSTIFY_LEFT</property>
<property name="wrap_mode">GTK_WRAP_NONE</property>
<property name="cursor_visible">True</property>
@ -1714,7 +1714,7 @@
<property name="can_focus">True</property>
<property name="editable">True</property>
<property name="overwrite">False</property>
<property name="accepts_tab">True</property>
<property name="accepts_tab">False</property>
<property name="justification">GTK_JUSTIFY_LEFT</property>
<property name="wrap_mode">GTK_WRAP_NONE</property>
<property name="cursor_visible">True</property>