summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2017-07-31 21:02:34 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2017-07-31 21:02:34 +0000
commitf4d7c6b3e650c28474deb62e7b2f72eee45e6554 (patch)
tree92e2c56c311055eac2dec6b9dc792e56d1be2bca /src
parentUpdate Russian translation (diff)
downloadinkscape-f4d7c6b3e650c28474deb62e7b2f72eee45e6554.tar.gz
inkscape-f4d7c6b3e650c28474deb62e7b2f72eee45e6554.zip
fixes the exclusion list for localized templates
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/template-load-tab.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/template-load-tab.cpp b/src/ui/dialog/template-load-tab.cpp
index 7dd889b2f..d39c03709 100644
--- a/src/ui/dialog/template-load-tab.cpp
+++ b/src/ui/dialog/template-load-tab.cpp
@@ -208,7 +208,7 @@ void TemplateLoadTab::_refreshTemplatesList()
void TemplateLoadTab::_loadTemplates()
{
- for(auto &filename: get_filenames(TEMPLATES, {".svg"}, {"default.", "default_"})) {
+ for(auto &filename: get_filenames(TEMPLATES, {".svg"}, {"default."})) {
TemplateData tmp = _processTemplateFile(filename);
if (tmp.display_name != "")
_tdata[tmp.display_name] = tmp;