diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-12-26 11:02:50 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-12-26 11:02:50 +0100 |
commit | 56f100b1b59bc59d5daba879626168bb5659e873 (patch) | |
tree | 89b59b5e2886aeb01ce9d5a586eaadc9b7955fdf /src | |
parent | 069486e5a49824afb2f71f5d94b5a88fa0ce0d5f (diff) |
Change window title
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 37afa54..023a444 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -320,7 +320,7 @@ int main(int argc, char **argv) { window_create_params.window_type = MGL_WINDOW_TYPE_NOTIFICATION; mgl::Window window; - if(!window.create("GPU Screen Recorder Notification", window_create_params)) + if(!window.create("gsr notify", window_create_params)) return 1; const mgl_window *win = window.internal_window(); |