diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2014-03-06 16:07:00 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2014-03-06 16:07:00 +0000 |
| commit | 6ef6a1f8505298a969ddbdbf577678fead2b9dbb (patch) | |
| tree | df56c24f22ae589652a34831dc2208344660903d /src/ui | |
| parent | Take "preserveAspectRatio" into account in pattern. (diff) | |
| download | inkscape-6ef6a1f8505298a969ddbdbf577678fead2b9dbb.tar.gz inkscape-6ef6a1f8505298a969ddbdbf577678fead2b9dbb.zip | |
Fix for Bug #1288401 (Hovering in symbols dialog over symbols with ampersand in description result in console warning).
Fixed bugs:
- https://launchpad.net/bugs/1288401
(bzr r13122)
Diffstat (limited to 'src/ui')
| -rw-r--r-- | src/ui/dialog/symbols.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/symbols.cpp b/src/ui/dialog/symbols.cpp index 62a2f8572..9479430d2 100644 --- a/src/ui/dialog/symbols.cpp +++ b/src/ui/dialog/symbols.cpp @@ -687,7 +687,7 @@ void SymbolsDialog::add_symbol( SPObject* symbol ) { if( pixbuf ) { Gtk::ListStore::iterator row = store->append(); (*row)[columns->symbol_id] = Glib::ustring( id ); - (*row)[columns->symbol_title] = Glib::ustring( g_dpgettext2(NULL, "Symbol", title) ); + (*row)[columns->symbol_title] = Glib::Markup::escape_text(Glib::ustring( g_dpgettext2(NULL, "Symbol", title) )); (*row)[columns->symbol_image] = pixbuf; } |
