1
0
mirror of synced 2024-11-12 18:20:52 +01:00

ux: Make splash screen not always be on top anymore

Fixes #402
This commit is contained in:
WerWolv 2022-01-22 22:08:25 +01:00
parent 4e047beabb
commit 89b9d21eaa

View File

@ -163,7 +163,7 @@ namespace hex::init {
glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE);
glfwWindowHint(GLFW_TRANSPARENT_FRAMEBUFFER, GLFW_TRUE);
glfwWindowHint(GLFW_DECORATED, GLFW_FALSE);
glfwWindowHint(GLFW_FLOATING, GLFW_TRUE);
glfwWindowHint(GLFW_FLOATING, GLFW_FALSE);
if (GLFWmonitor *monitor = glfwGetPrimaryMonitor(); monitor != nullptr) {
float xScale = 0, yScale = 0;