'How to show cursor during application debug c OpenGl on ubuntu in Visual Studio Code
window = glfwCreateWindow(winW, winH, "TestApp", NULL, NULL);
After calling this command, the mouse cursor disappears. When a breakpoint is triggered after this command, I can not fully use the debug. How to show cursor?
Solution 1:[1]
Maybe the new, v1.67, setting:
Debug: Focus Editor on Break
It is enabled by default.
Controls whether the editor should be focused when the debugger breaks.
will help.
From When a breakpoint is hit, the caret (cursor) should move to that line
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Mark |