Updated title font and added link to servers

This commit is contained in:
Tristan B. Kildaire 2020-10-23 15:17:00 +02:00
parent 912fdb3745
commit 0f6aabb311
1 changed files with 5 additions and 1 deletions

View File

@ -97,7 +97,7 @@ public class GUI : Thread
/* Create the welcome text */
Label title = new Label("<span size=\"100\">Gustav</span>");
title.setMarkup("<span size=\"50000\">Gustav</span>");
title.setMarkup("<span font_desc=\"Open Sans Extrabold\" size=\"50000\">Gustav</span>");
welcomeBox.add(title);
/* Create the welcome tagline */
@ -105,6 +105,10 @@ public class GUI : Thread
tagline.setMarkup("<span size=\"30000\">GTK+ graphical DNET client</span>");
welcomeBox.add(tagline);
Label server = new Label("<a href=\"\">fok</a>");
server.setMarkup("<a href=\"\">Find some servers</a>");
welcomeBox.add(server);
return welcomeBox;
}