From 0f6aabb3114c75b1fc79c30243e5ca3b1cc978b3 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Fri, 23 Oct 2020 15:17:00 +0200 Subject: [PATCH] Updated title font and added link to servers --- source/gui.d | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/gui.d b/source/gui.d index a3a4681..67af589 100644 --- a/source/gui.d +++ b/source/gui.d @@ -97,7 +97,7 @@ public class GUI : Thread /* Create the welcome text */ Label title = new Label("Gustav"); - title.setMarkup("Gustav"); + title.setMarkup("Gustav"); welcomeBox.add(title); /* Create the welcome tagline */ @@ -105,6 +105,10 @@ public class GUI : Thread tagline.setMarkup("GTK+ graphical DNET client"); welcomeBox.add(tagline); + Label server = new Label("fok"); + server.setMarkup("Find some servers"); + welcomeBox.add(server); + return welcomeBox; }