diff options
author | Stefano Karapetsas <[email protected]> | 2014-06-25 12:42:48 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-06-25 12:42:48 +0200 |
commit | 4824b104f144cb4e54151135cf9287117a12e85e (patch) | |
tree | bd4297abc9c820a2b47071e62f5e9b2aebe9ebf0 | |
parent | 8197f71e2a50b9a74b99315bb481274f612b83b3 (diff) | |
parent | 69ce7af529f553259dd6594876a0d88994dae2f8 (diff) | |
download | mate-desktop-4824b104f144cb4e54151135cf9287117a12e85e.tar.bz2 mate-desktop-4824b104f144cb4e54151135cf9287117a12e85e.tar.xz |
Merge pull request #114 from dnk/focus_chain
forbid to switch focus between labels
-rw-r--r-- | libmate-desktop/mate-aboutdialog.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libmate-desktop/mate-aboutdialog.c b/libmate-desktop/mate-aboutdialog.c index e271bcf..0b39dce 100644 --- a/libmate-desktop/mate-aboutdialog.c +++ b/libmate-desktop/mate-aboutdialog.c @@ -495,6 +495,7 @@ mate_about_dialog_init (MateAboutDialog *about) gtk_widget_push_composite_child (); vbox = gtk_vbox_new (FALSE, 8); + gtk_container_set_focus_chain (GTK_CONTAINER (vbox), NULL); gtk_container_set_border_width (GTK_CONTAINER (vbox), 5); gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (dialog)), vbox, TRUE, TRUE, 0); |