summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2018-05-03 14:03:49 +0000
committerTavmjong Bah <tavmjong@free.fr>2018-05-03 14:03:49 +0000
commitcf2497268b7d18ef78932279d72f060cae9ec61d (patch)
tree0a607f82c91557db83eeff056d69a058f481ed3b /src/ui/dialog
parentSmall bug fixes to font-variations files. (diff)
downloadinkscape-cf2497268b7d18ef78932279d72f060cae9ec61d.tar.gz
inkscape-cf2497268b7d18ef78932279d72f060cae9ec61d.zip
Rename "Glyphs" dialog to "Unicode Characters" dialog to better reflect what it does.
Minor UI tweaks and bug fixes.
Diffstat (limited to 'src/ui/dialog')
-rw-r--r--src/ui/dialog/glyphs.cpp6
-rw-r--r--src/ui/dialog/text-edit.cpp6
2 files changed, 5 insertions, 7 deletions
diff --git a/src/ui/dialog/glyphs.cpp b/src/ui/dialog/glyphs.cpp
index 0a62fd8c1..193ff232d 100644
--- a/src/ui/dialog/glyphs.cpp
+++ b/src/ui/dialog/glyphs.cpp
@@ -335,10 +335,8 @@ GlyphsPanel::GlyphsPanel() :
// -------------------------------
{
- fontSelector = new Inkscape::UI::Widget::FontSelector (false);
- fontSelector->set_name ("Glyphs");
- fontSelector->set_fontsize_visible (false);
- fontSelector->update_size (12.0);
+ fontSelector = new Inkscape::UI::Widget::FontSelector (false, false);
+ fontSelector->set_name ("UnicodeCharacters");
sigc::connection conn =
fontSelector->connectChanged(sigc::hide(sigc::mem_fun(*this, &GlyphsPanel::rebuild)));
diff --git a/src/ui/dialog/text-edit.cpp b/src/ui/dialog/text-edit.cpp
index 71d251153..ff97bb68c 100644
--- a/src/ui/dialog/text-edit.cpp
+++ b/src/ui/dialog/text-edit.cpp
@@ -65,7 +65,7 @@ TextEdit::TextEdit()
: UI::Widget::Panel("/dialogs/textandfont", SP_VERB_DIALOG_TEXT),
font_label(_("_Font"), true),
text_label(_("_Text"), true),
- vari_label(_("_Variants"), true),
+ vari_label(_("_Features"), true),
setasdefault_button(_("Set as _default")),
close_button(_("_Close"), true),
apply_button(_("_Apply"), true),
@@ -127,8 +127,8 @@ TextEdit::TextEdit()
/* Notebook -----------------------------------*/
notebook.set_name( "TextEdit Notebook" );
notebook.append_page(font_vbox, font_label);
- notebook.append_page(text_vbox, text_label);
notebook.append_page(vari_vbox, vari_label);
+ notebook.append_page(text_vbox, text_label);
/* Buttons (below notebook) ------------------ */
setasdefault_button.set_use_underline(true);
@@ -376,7 +376,7 @@ SPCSSAttr *TextEdit::fillTextStyle ()
sp_repr_css_set_property (css, "font-size", os.str().c_str());
}
- // Font variants
+ // Font variants (Font features)
vari_vbox.fill_css( css );
return css;