summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 774c9ca)
raw | patch | inline | side by side (parent: 774c9ca)
| author | gouldtj <gouldtj@users.sourceforge.net> | |
| Sat, 6 May 2006 16:01:37 +0000 (16:01 +0000) | ||
| committer | gouldtj <gouldtj@users.sourceforge.net> | |
| Sat, 6 May 2006 16:01:37 +0000 (16:01 +0000) |
Allows param default values to be translatable and adding a little space
in the dialog.
in the dialog.
| src/extension/extension.cpp | patch | blob | history |
index fe23ec5574112c4d7b974ae566e368ebf9846b0a..97d71c5ee2ffba31a6e21d71d38cf5d1df5263a5 100644 (file)
@@ -91,15 +91,15 @@ Extension::Extension (Inkscape::XML::Node * in_repr, Implementation::Implementat
if (!strcmp(chname, "help")) {
_help = g_strdup (sp_repr_children(child_repr)->content());
} /* name */
- if (!strcmp(chname, "param")) {
+ if (!strcmp(chname, "param") || !strcmp(chname, "_param")) {
Parameter * param;
param = Parameter::make(child_repr, this);
if (param != NULL)
parameters = g_slist_append(parameters, param);
- } /* param */
+ } /* param || _param */
if (!strcmp(chname, "dependency")) {
_deps.push_back(new Dependency(child_repr));
- } /* param */
+ } /* dependency */
child_repr = sp_repr_next(child_repr);
}
*/
void addWidget (Gtk::Widget * widg, gchar const * tooltip) {
if (widg == NULL) return;
- this->pack_start(*widg, true, true);
+ this->pack_start(*widg, true, true, 2);
if (tooltip != NULL) {
_tooltips.set_tip(*widg, Glib::ustring(tooltip));
// printf("Setting tooltip: %s\n", tooltip);