From a7a70aeed7398dc0f927ae068b1a4f86a3831bd8 Mon Sep 17 00:00:00 2001 From: teamcons Date: Sun, 21 Sep 2025 20:57:17 +0200 Subject: [PATCH 1/3] Add a tooltip --- po/POTFILES | 1 + src/MapWidget.vala | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/po/POTFILES b/po/POTFILES index d83fbe0..58e310f 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -1,3 +1,4 @@ src/Application.vala src/MainWindow.vala src/SearchResultItem.vala +src/MapWidget.vala \ No newline at end of file diff --git a/src/MapWidget.vala b/src/MapWidget.vala index 412472b..a2f397b 100644 --- a/src/MapWidget.vala +++ b/src/MapWidget.vala @@ -170,7 +170,8 @@ public class Maps.MapWidget : Gtk.Box { var marker = new Shumate.Point () { latitude = latitude, longitude = longitude, - selectable = true + selectable = true, + tooltip_text = _("You are here! (Approximately)") }; location_layer.add_marker (marker); From 29fd130710c1190a298a922a8180d2e7916c6f4a Mon Sep 17 00:00:00 2001 From: Stella and Charlie <147658063+teamcons@users.noreply.github.com> Date: Wed, 1 Oct 2025 16:45:52 +0200 Subject: [PATCH 2/3] Sort potfile and add EOF blank --- po/POTFILES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/POTFILES b/po/POTFILES index 58e310f..2379a5f 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -1,4 +1,4 @@ src/Application.vala src/MainWindow.vala +src/MapWidget.vala src/SearchResultItem.vala -src/MapWidget.vala \ No newline at end of file From d54f7db6d8bb74d8222a724dad6296117b4adf17 Mon Sep 17 00:00:00 2001 From: Stella and Charlie <147658063+teamcons@users.noreply.github.com> Date: Wed, 1 Oct 2025 16:46:34 +0200 Subject: [PATCH 3/3] Reword --- src/MapWidget.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MapWidget.vala b/src/MapWidget.vala index a2f397b..6f69f2b 100644 --- a/src/MapWidget.vala +++ b/src/MapWidget.vala @@ -171,7 +171,7 @@ public class Maps.MapWidget : Gtk.Box { latitude = latitude, longitude = longitude, selectable = true, - tooltip_text = _("You are here! (Approximately)") + tooltip_text = _("You are here") }; location_layer.add_marker (marker);