From 8206612a53a47db0ddd90c0be6e345b5200b2f77 Mon Sep 17 00:00:00 2001 From: Aman Gupta Date: Mon, 3 Feb 2025 09:37:47 +0530 Subject: [PATCH] Picker Tool text is now translatable --- src/ui/dialog/object-attributes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/dialog/object-attributes.cpp b/src/ui/dialog/object-attributes.cpp index f73c6d5151..130f8fe689 100644 --- a/src/ui/dialog/object-attributes.cpp +++ b/src/ui/dialog/object-attributes.cpp @@ -400,7 +400,7 @@ public: if (auto grid = dynamic_cast(_table->get_first_child())) { auto op_button = Gtk::make_managed(); op_button->set_active(false); - op_button->set_tooltip_markup("Picker Tool\nSelect objects on canvas"); + op_button->set_tooltip_markup(_("Picker Tool\nSelect objects on canvas")); op_button->set_margin_start(4); op_button->set_image_from_icon_name("object-pick"); -- GitLab