From ea80ff882d11bf22000397ba739a1f8e641a13c6 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Wed, 20 Jan 2021 18:51:53 +0100 Subject: [PATCH] Run: Fix newline in info label This apparently was a workaround for escape sequences in GML at some point (see #4937), but it now literally inserts "\n" and no newline, as the backslash itself is escaped. --- Userland/Applications/Run/Run.gml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/Run/Run.gml b/Userland/Applications/Run/Run.gml index 798293103f..0856c9713e 100644 --- a/Userland/Applications/Run/Run.gml +++ b/Userland/Applications/Run/Run.gml @@ -16,7 +16,7 @@ @GUI::Label { name: "info" - text: "Type the name of a program, folder, document,\\nor website, and SerenityOS will open it for you." + text: "Type the name of a program, folder, document,\nor website, and SerenityOS will open it for you." text_alignment: "CenterLeft" } }