From c529f38517547c5954e9a7074848d8875f52556e Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Thu, 18 Jul 2019 23:32:01 +0200 Subject: [PATCH] Tutorial has a window title. --- Content.Client/UserInterface/TutorialWindow.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.Client/UserInterface/TutorialWindow.cs b/Content.Client/UserInterface/TutorialWindow.cs index 4f69201d78..fa7327e6c7 100644 --- a/Content.Client/UserInterface/TutorialWindow.cs +++ b/Content.Client/UserInterface/TutorialWindow.cs @@ -29,6 +29,8 @@ You can ask on Discord or heck, just write it in OOC! We'll catch it."; public TutorialWindow() { + Title = "The Tutorial!"; + var scrollContainer = new ScrollContainer(); Contents.AddChild(scrollContainer);