Merge pull request #661 from bolt-blue/glfw_demo_quickfix

Quickfix glfw shift-key handling
This commit is contained in:
Rob Loach 2024-07-23 11:40:40 -04:00 committed by GitHub
commit 2795d90707
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 0 additions and 5 deletions

View File

@ -350,7 +350,6 @@ nk_glfw3_new_frame(void)
nk_input_key(ctx, NK_KEY_COPY, 0);
nk_input_key(ctx, NK_KEY_PASTE, 0);
nk_input_key(ctx, NK_KEY_CUT, 0);
nk_input_key(ctx, NK_KEY_SHIFT, 0);
}
glfwGetCursorPos(win, &x, &y);

View File

@ -468,7 +468,6 @@ nk_glfw3_new_frame(struct nk_glfw* glfw)
nk_input_key(ctx, NK_KEY_COPY, 0);
nk_input_key(ctx, NK_KEY_PASTE, 0);
nk_input_key(ctx, NK_KEY_CUT, 0);
nk_input_key(ctx, NK_KEY_SHIFT, 0);
}
glfwGetCursorPos(win, &x, &y);

View File

@ -619,7 +619,6 @@ nk_glfw3_new_frame(void)
nk_input_key(ctx, NK_KEY_COPY, 0);
nk_input_key(ctx, NK_KEY_PASTE, 0);
nk_input_key(ctx, NK_KEY_CUT, 0);
nk_input_key(ctx, NK_KEY_SHIFT, 0);
}
glfwGetCursorPos(win, &x, &y);

View File

@ -1322,7 +1322,6 @@ NK_API void nk_glfw3_new_frame(void) {
nk_input_key(ctx, NK_KEY_COPY, 0);
nk_input_key(ctx, NK_KEY_PASTE, 0);
nk_input_key(ctx, NK_KEY_CUT, 0);
nk_input_key(ctx, NK_KEY_SHIFT, 0);
}
glfwGetCursorPos(win, &x, &y);

View File

@ -1099,7 +1099,6 @@ NK_API void nk_glfw3_new_frame(void) {
nk_input_key(ctx, NK_KEY_COPY, 0);
nk_input_key(ctx, NK_KEY_PASTE, 0);
nk_input_key(ctx, NK_KEY_CUT, 0);
nk_input_key(ctx, NK_KEY_SHIFT, 0);
}
glfwGetCursorPos(win, &x, &y);