From 0bce83ce5e94dce5b9319e76438454160e940f6c Mon Sep 17 00:00:00 2001 From: mderezynski Date: Mon, 22 May 2006 10:43:18 +0000 Subject: [PATCH] * Remember default setting for alingment --- src/widgets/toolbox.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) 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); -- 2.30.2