Skip to content

Commit

Permalink
Wayland: Use "Minimal Window" as window title
Browse files Browse the repository at this point in the history
  • Loading branch information
esnosy committed Oct 3, 2023
1 parent 52d01c0 commit 6ef93ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wayland.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ void minimal_window_create_fixed_size_window(int width, int height) {
xdg_wm_base_get_xdg_surface(global_client_state.xdg_wm_base, global_client_state.wl_surface);
global_client_state.xdg_toplevel = xdg_surface_get_toplevel(global_client_state.xdg_surface);

xdg_toplevel_set_title(global_client_state.xdg_toplevel, "Example client");
xdg_toplevel_set_title(global_client_state.xdg_toplevel, "Minimal Window");
wl_surface_commit(global_client_state.wl_surface);

xdg_surface_add_listener(global_client_state.xdg_surface, &xdg_surface_listener, &global_client_state);
Expand Down

0 comments on commit 6ef93ed

Please sign in to comment.