We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b47e63 commit 408cd9cCopy full SHA for 408cd9c
glfw/wl_window.c
@@ -1256,8 +1256,12 @@ void _glfwPlatformHideWindow(_GLFWwindow* window)
1256
void _glfwPlatformRequestWindowAttention(_GLFWwindow* window)
1257
{
1258
// TODO
1259
- _glfwInputError(GLFW_PLATFORM_ERROR,
1260
- "Wayland: Window attention request not implemented yet");
+ static GLFWbool notified = GLFW_FALSE;
+ if (!notified) {
1261
+ _glfwInputError(GLFW_PLATFORM_ERROR,
1262
+ "Wayland: Window attention request not implemented yet");
1263
+ notified = GLFW_TRUE;
1264
+ }
1265
}
1266
1267
int _glfwPlatformWindowBell(_GLFWwindow* window)
0 commit comments