From: mderezynski Date: Mon, 22 May 2006 10:43:18 +0000 (+0000) Subject: * Remember default setting for alingment X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0bce83ce5e94dce5b9319e76438454160e940f6c;p=inkscape.git * Remember default setting for alingment --- diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp index 2d2cd801b..e67c39cc1 100644 --- a/src/widgets/toolbox.cpp +++ b/src/widgets/toolbox.cpp @@ -3072,6 +3072,17 @@ namespace { } } + SPStyle *query = + sp_style_new (); + int result_numbers = + sp_desktop_query_style (SP_ACTIVE_DESKTOP, query, QUERY_STYLE_PROPERTY_FONTNUMBERS); + + // If querying returned nothing, read the style from the text tool prefs (default style for new texts) + if (result_numbers == QUERY_STYLE_NOTHING) + { + sp_repr_css_change (inkscape_get_repr (INKSCAPE, "tools.text"), css, "style"); + } + sp_desktop_set_style (desktop, css, true, true); sp_document_done (sp_desktop_document (SP_ACTIVE_DESKTOP)); sp_repr_css_attr_unref (css);