mirror of
https://github.com/glfw/glfw.git
synced 2024-12-03 07:17:10 +00:00
Add GLFW_DND_DRAGGING window attribute
This commit is contained in:
parent
519ee68876
commit
a76293fa40
@ -541,6 +541,7 @@ struct _GLFWwindow
|
||||
GLFWbool floating;
|
||||
GLFWbool focusOnShow;
|
||||
GLFWbool mousePassthrough;
|
||||
GLFWbool dndDragging;
|
||||
GLFWbool shouldClose;
|
||||
void* userPointer;
|
||||
GLFWbool doublebuffer;
|
||||
|
@ -856,6 +856,8 @@ GLFWAPI int glfwGetWindowAttrib(GLFWwindow* handle, int attrib)
|
||||
return window->focusOnShow;
|
||||
case GLFW_MOUSE_PASSTHROUGH:
|
||||
return window->mousePassthrough;
|
||||
case GLFW_DND_DRAGGING:
|
||||
return window->dndDragging;
|
||||
case GLFW_TRANSPARENT_FRAMEBUFFER:
|
||||
return _glfw.platform.framebufferTransparent(window);
|
||||
case GLFW_RESIZABLE:
|
||||
|
Loading…
Reference in New Issue
Block a user