Explorar o código

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.
Linus Groh %!s(int64=4) %!d(string=hai) anos
pai
achega
ea80ff882d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Userland/Applications/Run/Run.gml

+ 1 - 1
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"
         }
     }