diff options
| author | Maren Hachmann <934908-Moini@users.noreply.gitlab.com> | 2019-08-10 23:34:57 +0000 |
|---|---|---|
| committer | Patrick Storz <eduard.braun2@gmx.de> | 2019-08-10 23:34:57 +0000 |
| commit | b8d104453ecbc03e01515745772e0e0ee714c92c (patch) | |
| tree | e82eee64429f1372c861e3524288e7670d5f10fc /src/live_effects | |
| parent | Fix clangtidy CI (diff) | |
| download | inkscape-b8d104453ecbc03e01515745772e0e0ee714c92c.tar.gz inkscape-b8d104453ecbc03e01515745772e0e0ee714c92c.zip | |
Improve tooltip text for linking in LPEs again.
Diffstat (limited to 'src/live_effects')
| -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 6fd63f99e..b8599c8fa 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(_("Insert from clipboard")); + pButton->set_tooltip_text(_("Link to path in clipboard")); } { // Select original button diff --git a/src/live_effects/parameter/originalpatharray.cpp b/src/live_effects/parameter/originalpatharray.cpp index d3ecac134..b487f36b3 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(_("Insert from clipboard")); + pButton->set_tooltip_text(_("Link to path in clipboard")); } { // Remove linked path diff --git a/src/live_effects/parameter/path.cpp b/src/live_effects/parameter/path.cpp index 8eb01b502..b8d73a122 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(_("Insert from clipboard")); + pButton->set_tooltip_text(_("Link to path in clipboard")); } static_cast<Gtk::HBox*>(_widget)->show_all_children(); |
