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; }