From 73cbc9eabb2777fdda075d1c2c39cf9202d31edc Mon Sep 17 00:00:00 2001 From: Shivram U Date: Tue, 21 Jan 2003 14:54:05 +0000 Subject: [PATCH] Set the size request of the shortcuts treeview instead of the the actions 2003-01-21 Shivram U * gnome-keybindings-properties.c (append_keys_to_tree): Set the size request of the shortcuts treeview instead of the the actions scrolled window. (#103962) --- capplets/keybindings/ChangeLog | 6 ++++++ capplets/keybindings/gnome-keybinding-properties.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/capplets/keybindings/ChangeLog b/capplets/keybindings/ChangeLog index 99872ba1a..2731ed65b 100644 --- a/capplets/keybindings/ChangeLog +++ b/capplets/keybindings/ChangeLog @@ -1,3 +1,9 @@ +2003-01-21 Shivram U + + * gnome-keybindings-properties.c (append_keys_to_tree): Set the size + request of the shortcuts treeview instead of the the actions scrolled + window. (#103962) + Tue Jan 21 01:15:14 2003 Jonathan Blandford * Release 2.2.0 diff --git a/capplets/keybindings/gnome-keybinding-properties.c b/capplets/keybindings/gnome-keybinding-properties.c index 7b5156542..d2350ecfc 100644 --- a/capplets/keybindings/gnome-keybinding-properties.c +++ b/capplets/keybindings/gnome-keybinding-properties.c @@ -523,7 +523,7 @@ append_keys_to_tree (GladeXML *dialog, GtkRequisition rectangle; gtk_widget_ensure_style (WID ("shortcut_treeview")); gtk_widget_size_request (WID ("shortcut_treeview"), &rectangle); - gtk_widget_set_size_request (WID ("actions_swindow"), -1, rectangle.height); + gtk_widget_set_size_request (WID ("shortcut_treeview"), -1, rectangle.height); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (WID ("actions_swindow")), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); }