diff options
Diffstat (limited to 'src/live_effects/effect.cpp')
| -rw-r--r-- | src/live_effects/effect.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index fbd3c90bd..3ce2aeef3 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -566,8 +566,11 @@ Effect::newWidget() Glib::ustring * tip = param->param_getTooltip(); if (widg) { vbox->pack_start(*widg, true, true, 2); - if (tip != NULL) { + if (tip) { widg->set_tooltip_text(*tip); + } else { + widg->set_tooltip_text(""); + widg->set_has_tooltip(false); } } } |
