diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-05-01 17:23:26 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-05-01 17:23:26 +0000 |
| commit | ad416d5923d0225b5ccfdf187b64bb8bc9857df9 (patch) | |
| tree | f67340ea3936d55c7da5fc49264e0bd71670e6d8 /src/ui/dialog/livepatheffect-add.cpp | |
| parent | Good redraw of BPaths on trying to close a BSpline (diff) | |
| download | inkscape-ad416d5923d0225b5ccfdf187b64bb8bc9857df9.tar.gz inkscape-ad416d5923d0225b5ccfdf187b64bb8bc9857df9.zip | |
Select filter on each LPE add dialog to easy remove or modify. Also improve LPE to match better LPE aloable effect per type of objext and some strings fixes
Diffstat (limited to 'src/ui/dialog/livepatheffect-add.cpp')
| -rw-r--r-- | src/ui/dialog/livepatheffect-add.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/dialog/livepatheffect-add.cpp b/src/ui/dialog/livepatheffect-add.cpp index 737d1e5ff..83761c36e 100644 --- a/src/ui/dialog/livepatheffect-add.cpp +++ b/src/ui/dialog/livepatheffect-add.cpp @@ -595,6 +595,10 @@ void LivePathEffectAdd::show(SPDesktop *desktop) Glib::RefPtr<Gtk::Adjustment> vadjust = dial._LPEScrolled->get_vadjustment(); vadjust->set_value(vadjust->get_lower()); dial._LPEDialogSelector->show(); + int searchlen = dial._LPEFilter->get_text().length(); + if (searchlen > 0) { + dial._LPEFilter->select_region (0, searchlen); + } dial._LPEDialogSelector->run(); dial._LPEDialogSelector->hide(); } |
