diff --git a/extension.js b/extension.js index 638cf12..3240084 100644 --- a/extension.js +++ b/extension.js @@ -407,8 +407,9 @@ const AreaManager = new Lang.Class({ this.activeArea.enterDrawingMode(); this.osdDisabled = Me.settings.get_boolean('osd-disabled'); + // is a clutter/mutter 3.38 bug workaround: https://gitlab.gnome.org/GNOME/mutter/-/issues/1467 // Translators: %s is a key label - let label = "" + _("Press %s for help").format(this.activeArea.helper.helpKeyLabel) + "\n\n" + _("Entering drawing mode"); + let label = `${_("Press %s for help").format(this.activeArea.helper.helpKeyLabel)}\n\n${_("Entering drawing mode")}`; this.showOsd(null, Files.Icons.ENTER, label, null, null, true); }