From 6cf15615e8ccd4afe59c7a4ad8786dbafb242ebf Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Mon, 15 Jun 2015 14:39:56 +0200 Subject: [PATCH] Clarified EWMH full screen error messages. --- src/x11_window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x11_window.c b/src/x11_window.c index c4f2cef4..0692aeaf 100644 --- a/src/x11_window.c +++ b/src/x11_window.c @@ -1652,7 +1652,7 @@ void _glfwPlatformIconifyWindow(_GLFWwindow* window) // Override-redirect windows cannot be iconified or restored, as those // tasks are performed by the window manager _glfwInputError(GLFW_PLATFORM_ERROR, - "X11: Iconification of full screen windows requires a WM that supports EWMH"); + "X11: Iconification of full screen windows requires a WM that supports EWMH full screen"); return; } @@ -1667,7 +1667,7 @@ void _glfwPlatformRestoreWindow(_GLFWwindow* window) // Override-redirect windows cannot be iconified or restored, as those // tasks are performed by the window manager _glfwInputError(GLFW_PLATFORM_ERROR, - "X11: Iconification of full screen windows requires a WM that supports EWMH"); + "X11: Iconification of full screen windows requires a WM that supports EWMH full screen"); return; }