WindowSetTitle sets the title of the window
(ctx context.Context, title string)
| 8 | |
| 9 | // WindowSetTitle sets the title of the window |
| 10 | func WindowSetTitle(ctx context.Context, title string) { |
| 11 | appFrontend := getFrontend(ctx) |
| 12 | appFrontend.WindowSetTitle(title) |
| 13 | } |
| 14 | |
| 15 | // WindowFullscreen makes the window fullscreen |
| 16 | func WindowFullscreen(ctx context.Context) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…