From 76f9cdc4267e70198822478159562039e469e7ce Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 22 Nov 2025 20:03:01 +0530 Subject: [PATCH] ... --- glfw/linux_desktop_settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/linux_desktop_settings.c b/glfw/linux_desktop_settings.c index 4a803051f..4377d3a3f 100644 --- a/glfw/linux_desktop_settings.c +++ b/glfw/linux_desktop_settings.c @@ -259,7 +259,7 @@ glfw_initialize_desktop_settings(void) { get_cursor_theme_from_env(); DBusConnection *session_bus = glfw_dbus_session_bus(); if (session_bus) { - if (!read_desktop_settings(session_bus)) _glfwInputError(GLFW_PLATFORM_ERROR, "Failed to read desktop settings, make sure you have the desktop portal running."); + if (!read_desktop_settings(session_bus)) _glfwInputError(GLFW_PLATFORM_ERROR, "WARNING: Failed to read desktop settings, using defaults, make sure you have the desktop portal running."); dbus_bus_add_match(session_bus, "type='signal',interface='" DESKTOP_INTERFACE "',member='SettingChanged'", NULL); dbus_connection_add_filter(session_bus, setting_changed, NULL, NULL); }