From 4592337ce546b1860c7582b7c925e3a66b929448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Tue, 31 May 2022 13:10:16 +0200 Subject: [PATCH] runDialog: Use single quotes for Wayland restart warning The API was changed to take a pointer to a MetaContext, in order to have a better way to fetch the MetaDisplay instance it needs. Part-of: --- js/ui/runDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/runDialog.js b/js/ui/runDialog.js index 037d1cb43..fe9b33e9c 100644 --- a/js/ui/runDialog.js +++ b/js/ui/runDialog.js @@ -235,7 +235,7 @@ class RunDialog extends ModalDialog.ModalDialog { _restart() { if (Meta.is_wayland_compositor()) { - this._showError(_("Restart is not available on Wayland")); + this._showError(_('Restart is not available on Wayland')); return; } this._shouldFadeOut = false;