From 413d8ccd5f589550fdc1a2c7b0215f7fa610ae2c Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Mon, 17 Jan 2022 21:27:49 -0800 Subject: [PATCH] Playground: Enable line numbers in the GML editor Most folks expect line numbers when editing code, so lets enable them in when editing GML in the Playground app. --- Userland/DevTools/Playground/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/DevTools/Playground/main.cpp b/Userland/DevTools/Playground/main.cpp index 177ca92c69..3886894bad 100644 --- a/Userland/DevTools/Playground/main.cpp +++ b/Userland/DevTools/Playground/main.cpp @@ -91,6 +91,7 @@ ErrorOr serenity_main(Main::Arguments arguments) editor->set_autocomplete_provider(make()); editor->set_should_autocomplete_automatically(true); editor->set_automatic_indentation_enabled(true); + editor->set_ruler_visible(true); String file_path; auto update_title = [&] {