diff options
| author | Moini <moini@noreply.invalid> | 2019-07-20 23:06:24 +0000 |
|---|---|---|
| committer | Moini <moini@noreply.invalid> | 2019-07-20 23:06:24 +0000 |
| commit | e418c59167e0413027d7a297c214ad1d47956e47 (patch) | |
| tree | 7fac5a1531ab97c99125d07f8e34f1310430dd3e /src/live_effects/parameter | |
| parent | Preferences: save shortcut file location relative to INKSCAPE_DATADIR (diff) | |
| parent | Improve title text for LPE button that pastes a path from the clipboard to us... (diff) | |
| download | inkscape-e418c59167e0413027d7a297c214ad1d47956e47.tar.gz inkscape-e418c59167e0413027d7a297c214ad1d47956e47.zip | |
Improve some LPE descriptions.
Diffstat (limited to 'src/live_effects/parameter')
| -rw-r--r-- | src/live_effects/parameter/originalpath.cpp | 2 | ||||
| -rw-r--r-- | src/live_effects/parameter/originalpatharray.cpp | 2 | ||||
| -rw-r--r-- | src/live_effects/parameter/path.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/live_effects/parameter/originalpath.cpp b/src/live_effects/parameter/originalpath.cpp index dd292fee3..6fd63f99e 100644 --- a/src/live_effects/parameter/originalpath.cpp +++ b/src/live_effects/parameter/originalpath.cpp @@ -61,7 +61,7 @@ OriginalPathParam::param_newWidget() pButton->show(); pButton->signal_clicked().connect(sigc::mem_fun(*this, &OriginalPathParam::on_link_button_click)); static_cast<Gtk::HBox*>(_widget)->pack_start(*pButton, true, true); - pButton->set_tooltip_text(_("Link to path")); + pButton->set_tooltip_text(_("Insert from clipboard")); } { // Select original button diff --git a/src/live_effects/parameter/originalpatharray.cpp b/src/live_effects/parameter/originalpatharray.cpp index 8728a1f47..d3ecac134 100644 --- a/src/live_effects/parameter/originalpatharray.cpp +++ b/src/live_effects/parameter/originalpatharray.cpp @@ -184,7 +184,7 @@ Gtk::Widget* OriginalPathArrayParam::param_newWidget() pButton->show(); pButton->signal_clicked().connect(sigc::mem_fun(*this, &OriginalPathArrayParam::on_link_button_click)); hbox->pack_start(*pButton, Gtk::PACK_SHRINK); - pButton->set_tooltip_text(_("Link to path")); + pButton->set_tooltip_text(_("Insert from clipboard")); } { // Remove linked path diff --git a/src/live_effects/parameter/path.cpp b/src/live_effects/parameter/path.cpp index b8d2f4476..532d7485a 100644 --- a/src/live_effects/parameter/path.cpp +++ b/src/live_effects/parameter/path.cpp @@ -253,7 +253,7 @@ PathParam::param_newWidget() pButton->show(); pButton->signal_clicked().connect(sigc::mem_fun(*this, &PathParam::on_link_button_click)); static_cast<Gtk::HBox*>(_widget)->pack_start(*pButton, true, true); - pButton->set_tooltip_text(_("Link to path on clipboard")); + pButton->set_tooltip_text(_("Insert from clipboard")); } static_cast<Gtk::HBox*>(_widget)->show_all_children(); |
