diff options
| author | Eduard Braun <eduard.braun2@gmx.de> | 2017-04-24 19:43:24 +0000 |
|---|---|---|
| committer | Eduard Braun <eduard.braun2@gmx.de> | 2017-04-24 19:43:24 +0000 |
| commit | bcd53f13e2f8547266a915dac0fc4c0012bfcf87 (patch) | |
| tree | a340f97f45db5c41b72aca56a16187f6ed87a654 /src/extension/extension.cpp | |
| parent | Extensions: Some refactoring for code clarity and consistency (diff) | |
| download | inkscape-bcd53f13e2f8547266a915dac0fc4c0012bfcf87.tar.gz inkscape-bcd53f13e2f8547266a915dac0fc4c0012bfcf87.zip | |
Extensions: Fixes and improvements for "gui-description" parameter attribute along the lines of r14955
- "gui-description" was always translated (as opposed to only "_gui-description")
- Added possibility to specify "msgctxt" for "_gui-description"
(bzr r15635)
Diffstat (limited to 'src/extension/extension.cpp')
| -rw-r--r-- | src/extension/extension.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/extension.cpp b/src/extension/extension.cpp index ebdc83b94..497f98431 100644 --- a/src/extension/extension.cpp +++ b/src/extension/extension.cpp @@ -701,7 +701,7 @@ public: #endif this->pack_start(*widg, false, false, 0); if (tooltip) { - widg->set_tooltip_text(_(tooltip)); + widg->set_tooltip_text(tooltip); } else { widg->set_tooltip_text(""); widg->set_has_tooltip(false); |
