Kurtis Fields
Kurtis Fields
## Change Summary Implements the improvedQueryRaw preview feature which was introduced in [Prisma 3.14.0](https://github.com/prisma/prisma/releases/tag/3.14.0) and is now a standard feature starting with Prisma 4.0.0 It also has changes to suppress...
This PR only affects project management/maintenance. The only real code changes were to make MyPy and Ruff happy. :) ## Changes ### Dependencies "Django >=3.2,
In the function `MouseInCanvas`: ```c++ const bool is_window_hovered_or_focused = ImGui::IsWindowHovered() || ImGui::IsWindowFocused(); ``` Needs to be changed to: ```c++ const bool is_window_hovered_or_focused = ImGui::IsWindowHovered(); ``` The reason is because if...