Skip to content

Commit

Permalink
client: add wayland appid & x11 class name
Browse files Browse the repository at this point in the history
  • Loading branch information
LizzyFleckenstein03 committed Aug 24, 2024
1 parent b047b75 commit 4f8f408
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/client/window.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ void window_init()
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
glfwWindowHintString(GLFW_WAYLAND_APP_ID, "dragonblocks_alpha");
glfwWindowHintString(GLFW_X11_CLASS_NAME, "dragonblocks_alpha");
glfwWindowHintString(GLFW_X11_INSTANCE_NAME, "dragonblocks_alpha");

window.width = 1250;
window.height = 750;
Expand Down

0 comments on commit 4f8f408

Please sign in to comment.