Index: trunk/src_plugins/hid_gtk/gui-config.c =================================================================== --- trunk/src_plugins/hid_gtk/gui-config.c (revision 2343) +++ trunk/src_plugins/hid_gtk/gui-config.c (revision 2344) @@ -701,7 +701,7 @@ static void config_increments_sect_create(GtkWidget * vbox) { - GtkWidget * hbox; + GtkWidget * hbox, *label; const int width = 128; char pathmm[256], *pemm; char pathmil[256], *pemil; @@ -738,9 +738,12 @@ conf_core.editor.increments_mil.grid, conf_core.editor.increments_mil.grid_min, conf_core.editor.increments_mil.grid_max, - CE_SMALL, umil, width, increment_spin_button_cb, strdup(pathmil), NULL, _("For 'g' and 'g'\ngrid change actions")); + CE_SMALL, umil, width, increment_spin_button_cb, strdup(pathmil), NULL, NULL); + label = gtk_label_new(_("For 'g' and 'g' grid change actions")); + gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 2); + /* ---- Size Increment/Decrement ---- */ strcpy(pemm, "size"); strcpy(pemil, "size"); @@ -759,10 +762,11 @@ conf_core.editor.increments_mil.size_min, conf_core.editor.increments_mil.size_max, CE_SMALL, umil, width, increment_spin_button_cb, - strdup(pathmil), NULL, - _("For 's' and 's'\nsize change actions on lines,\n" - "pads, pins and text. Use\n's' and 's'\nfor drill holes.")); + strdup(pathmil), NULL, NULL); + label = gtk_label_new(_("For 's' and 's' size change actions on lines, pads, pins and text.\nUse 's' and 's' for drill holes.")); + gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 2); + /* ---- Line Increment/Decrement ---- */ strcpy(pemm, "line"); strcpy(pemil, "line"); @@ -781,8 +785,11 @@ conf_core.editor.increments_mil.line_min, conf_core.editor.increments_mil.line_max, CE_SMALL, umil, width, increment_spin_button_cb, - strdup(pathmil), NULL, _("For 'l' and 'l'\nrouting line width\nchange actions")); + strdup(pathmil), NULL, NULL); + label = gtk_label_new(_("For 'l' and 'l' routing line width change actions")); + gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 2); + /* ---- Clear Increment/Decrement ---- */ strcpy(pemm, "clear"); strcpy(pemil, "clear"); @@ -801,8 +808,12 @@ conf_core.editor.increments_mil.clear_min, conf_core.editor.increments_mil.clear_max, CE_SMALL, umil, width, increment_spin_button_cb, - strdup(pathmil), NULL, _("For 'k' and 'k'\nline clearance inside\npolygon size\nchange actions")); + strdup(pathmil), NULL, NULL); + label = gtk_label_new(_("For 'k' and 'k' line clearance inside polygon size change actions")); + gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 2); + + gtk_widget_show_all(config_increments_vbox); }