summaryrefslogtreecommitdiffstats
path: root/src/extension/effect.h
diff options
context:
space:
mode:
authorPatrick Storz <eduard.braun2@gmx.de>2019-08-04 22:53:57 +0000
committerPatrick Storz <eduard.braun2@gmx.de>2019-08-31 14:50:38 +0000
commit40df9f6ef495c4577958502ffb4f23a4a4e1092f (patch)
treec8d16021ba5a2305687b02cd62385f6889e8f01c /src/extension/effect.h
parentTranslatable enum can be protected (diff)
downloadinkscape-40df9f6ef495c4577958502ffb4f23a4a4e1092f.tar.gz
inkscape-40df9f6ef495c4577958502ffb4f23a4a4e1092f.zip
Switch Inkscape::Extension to use InxWidgets instead of InxParameters
Diffstat (limited to '')
-rw-r--r--src/extension/effect.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/effect.h b/src/extension/effect.h
index d2b5606f2..2312bb838 100644
--- a/src/extension/effect.h
+++ b/src/extension/effect.h
@@ -73,7 +73,7 @@ class Effect : public Extension {
_elip_name(nullptr) {
/* No clue why, but this is required */
this->set_default_sensitive(true);
- if (_showPrefs && effect != nullptr && effect->param_visible_count() != 0) {
+ if (_showPrefs && effect != nullptr && effect->widget_visible_count() != 0) {
_elip_name = g_strdup_printf("%s...", _(name));
set_name(_elip_name);
}