summaryrefslogtreecommitdiffstats
path: root/examples/todos.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-05 01:57:35 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-05 01:57:35 +0100
commite92ea48e8814b42fc566017db085ca9bdaf3c272 (patch)
tree48413064237f8b00b4b4c8668a96fc5ca79d995a /examples/todos.rs
parentf87ddf1056327551b4a2bba9e98cbb7816b6666c (diff)
downloadiced-e92ea48e8814b42fc566017db085ca9bdaf3c272.tar.gz
iced-e92ea48e8814b42fc566017db085ca9bdaf3c272.tar.bz2
iced-e92ea48e8814b42fc566017db085ca9bdaf3c272.zip
Make `Button::background` generic
Diffstat (limited to 'examples/todos.rs')
-rw-r--r--examples/todos.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/todos.rs b/examples/todos.rs
index 684c9fea..5f435fdc 100644
--- a/examples/todos.rs
+++ b/examples/todos.rs
@@ -1,7 +1,7 @@
use iced::{
- button, scrollable, text_input, Align, Application, Button,
- Checkbox, Color, Column, Command, Container, Element, Font,
- HorizontalAlignment, Length, Row, Scrollable, Settings, Text, TextInput,
+ button, scrollable, text_input, Align, Application, Button, Checkbox,
+ Color, Column, Command, Container, Element, Font, HorizontalAlignment,
+ Length, Row, Scrollable, Settings, Text, TextInput,
};
use serde::{Deserialize, Serialize};
@@ -332,7 +332,7 @@ impl Task {
.on_press(TaskMessage::Delete)
.padding(10)
.border_radius(5)
- .background(Color::from_rgb(0.8, 0.2, 0.2).into()),
+ .background(Color::from_rgb(0.8, 0.2, 0.2)),
)
.into()
}
@@ -361,7 +361,7 @@ impl Controls {
let label = Text::new(label).size(16).width(Length::Shrink);
let button = if filter == current_filter {
Button::new(state, label.color(Color::WHITE))
- .background(Color::from_rgb(0.2, 0.2, 0.7).into())
+ .background(Color::from_rgb(0.2, 0.2, 0.7))
} else {
Button::new(state, label)
};