From ff4587aae9977e4b1ec752ef21d5b4012e940095 Mon Sep 17 00:00:00 2001 From: crschnick Date: Sat, 23 Dec 2023 19:12:56 +0000 Subject: [PATCH] Improve font loading error message --- app/src/main/java/io/xpipe/app/core/AppFont.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/io/xpipe/app/core/AppFont.java b/app/src/main/java/io/xpipe/app/core/AppFont.java index 1ce1cd7a..12d28268 100644 --- a/app/src/main/java/io/xpipe/app/core/AppFont.java +++ b/app/src/main/java/io/xpipe/app/core/AppFont.java @@ -62,7 +62,7 @@ public class AppFont { try { Font.getDefault(); } catch (Throwable t) { - throw new IllegalStateException("Font loading is not working. Check whether your system is properly configured with fontconfig", t); + throw new IllegalStateException("Unable to load any fonts. Check whether your system is properly configured with fontconfig", t); } }