diff options
author | gennyble <gen@nyble.dev> | 2024-11-30 04:40:13 -0600 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2024-11-30 04:40:13 -0600 |
commit | f3d59ae0bfe4548a0c87d56cc251b092fa393940 (patch) | |
tree | 87bb88ba2f0b9a6825c8217f934e93e67f25db21 /src | |
parent | 7a720b63d1fe4e2f50813d5c1a1d89579258d453 (diff) | |
download | really-etches-f3d59ae0bfe4548a0c87d56cc251b092fa393940.tar.gz really-etches-f3d59ae0bfe4548a0c87d56cc251b092fa393940.zip |
Set window title and add image todo
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index c6563f1..c1bb344 100644 --- a/src/main.rs +++ b/src/main.rs @@ -126,6 +126,7 @@ const STYLUS_COLOUR: u32 = 0x00a0a0a0; impl ApplicationHandler for Etch { fn resumed(&mut self, event_loop: &winit::event_loop::ActiveEventLoop) { let window = Rc::new(event_loop.create_window(Window::default_attributes()).unwrap()); + window.set_title("that really etches my sketch"); window.set_resizable(false); window.request_inner_size(LogicalSize::new(WIDTH, HEIGHT)); |