summaryrefslogtreecommitdiff
path: root/src/placeEntry.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/placeEntry.js')
-rw-r--r--src/placeEntry.js9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/placeEntry.js b/src/placeEntry.js
index 77df0837..19e6024c 100644
--- a/src/placeEntry.js
+++ b/src/placeEntry.js
@@ -264,8 +264,7 @@ export class PlaceEntry extends Gtk.SearchEntry {
location.set_from_uri(this.text);
this.place = new Place({ location: location });
} catch(e) {
- let msg = _("Failed to parse Geo URI");
- Utils.showDialog(msg, Gtk.MessageType.ERROR, this.get_toplevel());
+ this.root.showToast(_("Failed to parse Geo URI"));
}
parsed = true;
@@ -277,8 +276,7 @@ export class PlaceEntry extends Gtk.SearchEntry {
if (query) {
this.text = query;
} else {
- let msg = _("Failed to parse Maps URI");
- Utils.showDialog(msg, Gtk.MessageType.ERROR, this.get_toplevel());
+ this.root.showToast(_("Failed to parse Maps URI"));
}
parsed = true;
@@ -306,8 +304,7 @@ export class PlaceEntry extends Gtk.SearchEntry {
if (place)
this.place = place;
else
- Utils.showDialog(error,
- Gtk.MessageType.ERROR, this.get_toplevel());
+ this.root.showToast(error);
});
/* don't cancel ongoing search, as we have started an async