System/packages/glfw-minecraft-wayland/0003-Don-t-crash-on-calls-t...

34 lines
1.4 KiB
Diff
Raw Normal View History

2022-04-19 20:01:28 -04:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ecmel=20Berk=20Canl=C4=B1er?= <me@ecmelberk.com>
Date: Tue, 28 Dec 2021 19:41:19 +0300
Subject: Don't crash on calls to focus or icon
---
src/wl_window.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/src/wl_window.c b/src/wl_window.c
2023-02-08 21:57:48 -05:00
index 656743a9..c36b11cd 100644
2022-04-19 20:01:28 -04:00
--- a/src/wl_window.c
+++ b/src/wl_window.c
2023-02-08 21:57:48 -05:00
@@ -885,8 +885,7 @@ void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title)
2022-04-19 20:01:28 -04:00
void _glfwPlatformSetWindowIcon(_GLFWwindow* window,
int count, const GLFWimage* images)
{
2023-02-08 21:57:48 -05:00
- _glfwInputError(GLFW_FEATURE_UNAVAILABLE,
- "Wayland: The platform does not support setting the window icon");
+ fprintf(stderr, "!!! Ignoring Error: Wayland: The platform does not support setting the window icon\n");
2022-04-19 20:01:28 -04:00
}
void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos)
2023-02-08 21:57:48 -05:00
@@ -1042,8 +1041,7 @@ void _glfwPlatformRequestWindowAttention(_GLFWwindow* window)
2022-04-19 20:01:28 -04:00
void _glfwPlatformFocusWindow(_GLFWwindow* window)
{
2023-02-08 21:57:48 -05:00
- _glfwInputError(GLFW_FEATURE_UNAVAILABLE,
- "Wayland: The platform does not support setting the input focus");
+ fprintf(stderr, "!!! Ignoring Error: Wayland: The platform does not support setting the input focus\n");
2022-04-19 20:01:28 -04:00
}
void _glfwPlatformSetWindowMonitor(_GLFWwindow* window,