Rename *_space to space_x and space_y

This commit is contained in:
Héctor Ramón Jiménez 2025-09-11 07:10:53 +02:00
parent c684fbd6af
commit 89b7585465
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
22 changed files with 92 additions and 113 deletions

View file

@ -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)
}),