diff options
author | 2024-01-11 06:12:37 +0100 | |
---|---|---|
committer | 2024-01-11 06:12:37 +0100 | |
commit | 11474bdc3e1a43e6c167d7b98f22d87933dbd2b6 (patch) | |
tree | 183647828e248271c8c3b3b31c3902e2be1fce28 /examples/websocket | |
parent | 03c901d49b7cce901cfd76100f08dcff31420af8 (diff) | |
download | iced-11474bdc3e1a43e6c167d7b98f22d87933dbd2b6.tar.gz iced-11474bdc3e1a43e6c167d7b98f22d87933dbd2b6.tar.bz2 iced-11474bdc3e1a43e6c167d7b98f22d87933dbd2b6.zip |
Fix `websocket` example
Diffstat (limited to 'examples/websocket')
-rw-r--r-- | examples/websocket/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/websocket/src/main.rs b/examples/websocket/src/main.rs index 59488e69..38a6db1e 100644 --- a/examples/websocket/src/main.rs +++ b/examples/websocket/src/main.rs @@ -125,7 +125,7 @@ impl Application for WebSocket { let mut button = button( text("Send") - .height(Length::Fill) + .height(40) .vertical_alignment(alignment::Vertical::Center), ) .padding([0, 20]); |