Wire up clipboard lost events

This commit is contained in:
Kovid Goyal
2025-03-12 09:26:36 +05:30
parent 08b4e3f2e0
commit b34a88065b
10 changed files with 40 additions and 0 deletions

5
glfw/input.c vendored
View File

@@ -453,6 +453,11 @@ void _glfwInputColorScheme(GLFWColorScheme value, bool is_initial_value) {
if (_glfw.callbacks.system_color_theme_change) _glfw.callbacks.system_color_theme_change(value, is_initial_value);
}
void _glfwInputClipboardLost(GLFWClipboardType which) {
if (_glfw.callbacks.clipboard_lost) _glfw.callbacks.clipboard_lost(which);
}
//////////////////////////////////////////////////////////////////////////
////// GLFW internal API //////
//////////////////////////////////////////////////////////////////////////