Rename *_space to space_x and space_y
This commit is contained in:
parent
c684fbd6af
commit
89b7585465
22 changed files with 92 additions and 113 deletions
|
|
@ -1,6 +1,5 @@
|
|||
use iced::widget::{
|
||||
button, column, horizontal_space, lazy, pick_list, row, scrollable, text,
|
||||
text_input,
|
||||
button, column, lazy, pick_list, row, scrollable, space_x, text, text_input,
|
||||
};
|
||||
use iced::{Element, Fill};
|
||||
|
||||
|
|
@ -174,7 +173,7 @@ impl App {
|
|||
|
||||
row![
|
||||
text(item.name.clone()).color(item.color),
|
||||
horizontal_space(),
|
||||
space_x(),
|
||||
pick_list(Color::ALL, Some(item.color), move |color| {
|
||||
Message::ItemColorChanged(item.clone(), color)
|
||||
}),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue