]> hydra-www.ietfng.org Git - gtetrinet/commitdiff
little change to sizes in the preferences dialog
authorDaniel Carbonell Fraj <bocata@src.gnome.org>
Mon, 2 Jun 2003 21:41:14 +0000 (21:41 +0000)
committerDaniel Carbonell Fraj <bocata@src.gnome.org>
Mon, 2 Jun 2003 21:41:14 +0000 (21:41 +0000)
ChangeLog
src/dialogs.c

index 5c9dc6ca04daf88329e3a7ac6a126d657e02ad4b..1e9c0de5af041c6612e981ad19c74dcc9aaf9a79 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2003-06-02  Dani Carbonell  <bocata@panete.net>
 
+       * 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.
 
index 1805d7b5a457fb42ad38246b4916490721edd9d3..757793cf6c24af5cf4fd84955df0219b5d31cafb 100644 (file)
@@ -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);