diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-09-22 16:00:59 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-09-22 16:00:59 +0000 |
| commit | 1711a79b8604d9e6d936e25eaf966154ff122483 (patch) | |
| tree | f03084c6e81d58583f1ff705b9392a8d215643aa /src/live_effects/parameter/point.cpp | |
| parent | Add some sugesstions and fixes from CR to measure segments (diff) | |
| download | inkscape-1711a79b8604d9e6d936e25eaf966154ff122483.tar.gz inkscape-1711a79b8604d9e6d936e25eaf966154ff122483.zip | |
Add tooltip to set default LPE widget
Diffstat (limited to 'src/live_effects/parameter/point.cpp')
| -rw-r--r-- | src/live_effects/parameter/point.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/live_effects/parameter/point.cpp b/src/live_effects/parameter/point.cpp index 331a86f81..da6edf812 100644 --- a/src/live_effects/parameter/point.cpp +++ b/src/live_effects/parameter/point.cpp @@ -115,6 +115,15 @@ PointParam::param_getSVGValue() const return str; } +gchar * +PointParam::param_getDefaultSVGValue() const +{ + Inkscape::SVGOStringStream os; + os << defvalue; + gchar * str = g_strdup(os.str().c_str()); + return str; +} + void PointParam::param_transform_multiply(Geom::Affine const& postmul, bool /*set*/) { |
