Applied a patch from Simon.Budig@unix-ag.org (gimp-simon-220598-0).

Cosmetic changes to the script-fu dialog.

Added session-managment to the error-console.


--Sven
This commit is contained in:
Sven Neumann
1998-08-02 19:05:02 +00:00
parent 3de98de2c4
commit 5ebfaaae74
23 changed files with 127 additions and 49 deletions

View File

@ -906,9 +906,17 @@ script_fu_interface (SFScript *script)
default:
break;
}
hbox = gtk_hbox_new (FALSE, 0);
gtk_box_pack_start (GTK_BOX(hbox), script->args_widgets[i],
(script->arg_types[i] == SF_VALUE),
(script->arg_types[i] == SF_VALUE), 0);
gtk_widget_show (hbox);
gtk_table_attach (GTK_TABLE (table), script->args_widgets[i],
1, 2, i, i + 1, 0, 0, 4, 2);
gtk_table_attach (GTK_TABLE (table), hbox, /* script->args_widgets[i], */
1, 2, i, i + 1,
GTK_FILL | ((script->arg_types[i] == SF_VALUE) ?
GTK_EXPAND : 0),
GTK_FILL, 4, 2);
gtk_widget_show (script->args_widgets[i]);
}
gtk_widget_show (table);