From 801a9f5c455fd9755bbe4d3e38e7ffc534c7c54d Mon Sep 17 00:00:00 2001 From: Daniel Carbonell Fraj Date: Mon, 2 Jun 2003 21:41:14 +0000 Subject: [PATCH] little change to sizes in the preferences dialog --- ChangeLog | 3 +++ src/dialogs.c | 9 +++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5c9dc6c..1e9c0de 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2003-06-02 Dani Carbonell + * src/dialogs.c (prefdialog_new): changed the size of some widgets + in the Keyboard tab. + * src/winlist.c (winlist_page_new): added scrollbars to the winlist, also made it bigger. diff --git a/src/dialogs.c b/src/dialogs.c index 1805d7b..757793c 100644 --- a/src/dialogs.c +++ b/src/dialogs.c @@ -944,7 +944,7 @@ void prefdialog_new (void) gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (keyclist), -1, _("Key"), renderer, "text", 1, NULL); - gtk_widget_set_size_request (key_scroll, 180, 200); + gtk_widget_set_size_request (key_scroll, 240, 200); gtk_widget_show (key_scroll); label = gtk_label_new (_("Select an action from the list and press Change " @@ -952,15 +952,16 @@ void prefdialog_new (void) gtk_label_set_justify (GTK_LABEL(label), GTK_JUSTIFY_LEFT); gtk_label_set_line_wrap (GTK_LABEL(label), TRUE); gtk_widget_show (label); + gtk_widget_set_size_request (label, 180, 100); button = gtk_button_new_with_mnemonic (_("Change _key...")); g_signal_connect (G_OBJECT(button), "clicked", - GTK_SIGNAL_FUNC (prefdialog_changekey), NULL); + GTK_SIGNAL_FUNC (prefdialog_changekey), NULL); gtk_widget_show (button); button1 = gtk_button_new_with_mnemonic (_("_Restore defaults")); g_signal_connect (G_OBJECT(button1), "clicked", - GTK_SIGNAL_FUNC (prefdialog_restorekeys), NULL); + GTK_SIGNAL_FUNC (prefdialog_restorekeys), NULL); gtk_widget_show (button1); table = gtk_table_new (2, 2, FALSE); @@ -1013,7 +1014,7 @@ void prefdialog_new (void) button = gtk_button_new_with_mnemonic (_("_Restore defaults")); g_signal_connect (G_OBJECT(button), "clicked", - GTK_SIGNAL_FUNC (prefdialog_restoremidi), NULL); + GTK_SIGNAL_FUNC (prefdialog_restoremidi), NULL); gtk_widget_show (button); miditable = gtk_table_new (4, 2, FALSE); -- 2.50.1