summaryrefslogtreecommitdiff
path: root/capplets
diff options
context:
space:
mode:
authorShivram U <shivaram.upadhyayula@wipro.com>2003-01-21 14:54:05 +0000
committerShivaram Upadhyayula <shivram_u@src.gnome.org>2003-01-21 14:54:05 +0000
commit73cbc9eabb2777fdda075d1c2c39cf9202d31edc (patch)
treefad53ce6e97ed6aa6bfc8a9102cdc63f64ec1e03 /capplets
parent0165c5481457e85d16c29fcd869298364b41d6b4 (diff)
downloadgnome-control-center-73cbc9eabb2777fdda075d1c2c39cf9202d31edc.tar.gz
Set the size request of the shortcuts treeview instead of the the actions
2003-01-21 Shivram U <shivaram.upadhyayula@wipro.com> * gnome-keybindings-properties.c (append_keys_to_tree): Set the size request of the shortcuts treeview instead of the the actions scrolled window. (#103962)
Diffstat (limited to 'capplets')
-rw-r--r--capplets/keybindings/ChangeLog6
-rw-r--r--capplets/keybindings/gnome-keybinding-properties.c2
2 files changed, 7 insertions, 1 deletions
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 <shivaram.upadhyayula@wipro.com>
+
+ * 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 <jrb@gnome.org>
* 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);
}