From e03dd3aabe953ac3ac2e8036e5f07acf47446dbd Mon Sep 17 00:00:00 2001 From: 0xboobface <0xboobface@gmail.com> Date: Sun, 16 Feb 2020 15:52:22 +0100 Subject: [PATCH] Extend the beta description text --- client/src/main/java/ctbrec/ui/sites/jasmin/LiveJasminTab.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/main/java/ctbrec/ui/sites/jasmin/LiveJasminTab.java b/client/src/main/java/ctbrec/ui/sites/jasmin/LiveJasminTab.java index f1d7df09..7d32d375 100644 --- a/client/src/main/java/ctbrec/ui/sites/jasmin/LiveJasminTab.java +++ b/client/src/main/java/ctbrec/ui/sites/jasmin/LiveJasminTab.java @@ -21,7 +21,8 @@ public class LiveJasminTab extends ThumbOverviewTab { public LiveJasminTab(String title, PaginatedScheduledService updateService, Site site) { super(title, updateService, site); if(!betaAcknowledged) { - status = new Label("LiveJasmin is not fully functional. Live previews do not work."); + status = new Label("LiveJasmin is not fully functional. Live previews do not work.\n" + + "If you get errors while loading the tabs, try to create an account and open the Followed tab first."); grid.getChildren().add(status); grid.getChildren().add(acknowledge); } else {