From 23370296024fc30b8721902955867c2fdab88832 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 13 Nov 2019 07:34:07 +0100 Subject: Remove default styling of `Button` - A background will only show if explicitly set. - `iced_wgpu` won't apply a `min_width` of 100 units anymore. --- examples/tour.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'examples') diff --git a/examples/tour.rs b/examples/tour.rs index 3fd031b8..34ad0a34 100644 --- a/examples/tour.rs +++ b/examples/tour.rs @@ -671,6 +671,7 @@ fn button<'a, Message>( ) .padding(12) .border_radius(12) + .min_width(100) } fn primary_button<'a, Message>( -- cgit