diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2018-12-19 09:32:53 +0000 |
|---|---|---|
| committer | Tavmjong Bah <tavmjong@free.fr> | 2018-12-19 09:32:53 +0000 |
| commit | f2ca5c785c4f3e1f4c72c0cd83af079981e6df65 (patch) | |
| tree | d3375000c7ca7323bc7c6bfe489763357dc13d49 /src | |
| parent | Add preference for using SVG 2 text in a shape (GUI to come). (diff) | |
| download | inkscape-f2ca5c785c4f3e1f4c72c0cd83af079981e6df65.tar.gz inkscape-f2ca5c785c4f3e1f4c72c0cd83af079981e6df65.zip | |
Add preference for using SVG2 auto-flowed text in GUI.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/dialog/inkscape-preferences.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index c301f724b..c4ea5d9b1 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -506,6 +506,10 @@ void InkscapePreferences::initPageTools() _font_dialog.init ( _("Show font substitution warning dialog"), "/options/font/substitutedlg", false); _page_text.add_line( false, "", _font_dialog, "", _("Show font substitution warning dialog when requested fonts are not available on the system")); + + cb = Gtk::manage(new PrefCheckButton); + cb->init ( _("Use SVG2 auto-flowed text"), "/tools/text/use_svg2", false); + _page_text.add_line( false, "", *cb, "", _("Use SVG2 auto-flowed text instead of SVG1.2 auto-flowed text. (Recommended)")); } Glib::ustring sizeLabels[] = {_("Pixel"), _("Point"), _("Pica"), _("Millimeter"), _("Centimeter"), _("Inch"), _("Em square")/*, _("Ex square"), _("Percent")*/}; |
