diff options
author | Cosimo Cecchi <cosimoc@src.gnome.org> | 2008-08-01 22:07:12 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@src.gnome.org> | 2008-08-01 22:07:12 +0800 |
commit | 4908c4b2c2af637129e4c05384c73504c1af5502 (patch) | |
tree | 1278953be96d5a3633cdb064040b790af77b18ae /src/pdm-dialog.c | |
parent | 4d91d416304a99c1aca5a8ce888868d4bd4e8b31 (diff) | |
download | gsoc2013-epiphany-4908c4b2c2af637129e4c05384c73504c1af5502.tar gsoc2013-epiphany-4908c4b2c2af637129e4c05384c73504c1af5502.tar.gz gsoc2013-epiphany-4908c4b2c2af637129e4c05384c73504c1af5502.tar.bz2 gsoc2013-epiphany-4908c4b2c2af637129e4c05384c73504c1af5502.tar.lz gsoc2013-epiphany-4908c4b2c2af637129e4c05384c73504c1af5502.tar.xz gsoc2013-epiphany-4908c4b2c2af637129e4c05384c73504c1af5502.tar.zst gsoc2013-epiphany-4908c4b2c2af637129e4c05384c73504c1af5502.zip |
Bug #328710. Re-focus the "Remove" button after the selection has been deleted.
svn path=/branches/gnome-2-24/; revision=8373
Diffstat (limited to 'src/pdm-dialog.c')
-rw-r--r-- | src/pdm-dialog.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c index fafa54fe7..19b12121c 100644 --- a/src/pdm-dialog.c +++ b/src/pdm-dialog.c @@ -547,6 +547,9 @@ pdm_dialog_remove_button_clicked_cb (GtkWidget *button, PdmActionInfo *action) { pdm_cmd_delete_selection (action); + + /* Restore the focus to the button */ + gtk_widget_grab_focus (button); } static void |