aboutsummaryrefslogtreecommitdiff
path: root/examples/styling.rs
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2026-02-03 23:59:14 +0100
committerPolesznyák Márk <contact@pml68.dev>2026-02-03 23:59:14 +0100
commita60c7bb059f8ec2f84a43ec5501754a89980c604 (patch)
tree1ee70f746f3796d85f82e60a43a6c15dd725229a /examples/styling.rs
parentchore: bump MSRV to match iced's (diff)
downloadiced_material-a60c7bb059f8ec2f84a43ec5501754a89980c604.tar.gz
refactor: increase border radius of rounded widgets just in case
Diffstat (limited to 'examples/styling.rs')
-rw-r--r--examples/styling.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/styling.rs b/examples/styling.rs
index 81c82dd..6336da3 100644
--- a/examples/styling.rs
+++ b/examples/styling.rs
@@ -219,8 +219,7 @@ impl Styling {
fn subscription(&self) -> Subscription<Message> {
keyboard::listen().filter_map(|event| {
- let keyboard::Event::KeyPressed { key, .. } = event
- else {
+ let keyboard::Event::KeyPressed { key, .. } = event else {
return None;
};