summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ui/dialog/livepatheffect-add.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/dialog/livepatheffect-add.cpp b/src/ui/dialog/livepatheffect-add.cpp
index 593969b2b..58afa61d6 100644
--- a/src/ui/dialog/livepatheffect-add.cpp
+++ b/src/ui/dialog/livepatheffect-add.cpp
@@ -140,7 +140,8 @@ LivePathEffectAdd::LivePathEffectAdd()
}
Gtk::Label *LPEDescription;
builder_effect->get_widget("LPEDescription", LPEDescription);
- LPEDescription->set_text(converter.get_description(data->id));
+ const Glib::ustring description = _(converter.get_description(data->id).c_str());
+ LPEDescription->set_text(description);
Gtk::ToggleButton *LPEExperimentalToggle;
builder_effect->get_widget("LPEExperimentalToggle", LPEExperimentalToggle);
bool active = converter.get_experimental(data->id) ? true : false;