1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:57:35 +00:00

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.
This commit is contained in:
Linus Groh 2021-01-20 18:51:53 +01:00 committed by Andreas Kling
parent c5709c0aed
commit ea80ff882d

View file

@ -16,7 +16,7 @@
@GUI::Label { @GUI::Label {
name: "info" 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" text_alignment: "CenterLeft"
} }
} }