cleanup: remove frosted toggle

This commit is contained in:
Ashley Wulber 2024-05-08 22:11:50 -04:00 committed by Michael Murphy
parent 7c4bd78174
commit d4bd120cbd

View file

@ -289,7 +289,6 @@ pub enum Message {
ExportError,
ExportFile(Arc<SelectedFiles>),
ExportSuccess,
Frosted(bool),
GapSize(spin_button::Message),
IconTheme(usize),
ImportError,
@ -532,11 +531,6 @@ impl Page {
);
Command::batch(vec![cmd, self.accent_window_hint.update::<app::Message>(u)])
}
Message::Frosted(enabled) => {
self.theme_builder_needs_update = true;
self.theme_builder.is_frosted = enabled;
Command::none()
}
Message::IconTheme(id) => {
if let Some(theme) = self.icon_themes.get(id).cloned() {
self.icon_theme_active = Some(id);
@ -1418,8 +1412,6 @@ pub fn style() -> Section<crate::pages::Message> {
fl!("style", "round").into(),
fl!("style", "slightly-round").into(),
fl!("style", "square").into(),
fl!("frosted").into(),
fl!("frosted", "desc").into(),
])
.view::<Page>(|_binder, page, section| {
let descriptions = &section.descriptions;
@ -1503,11 +1495,6 @@ pub fn style() -> Section<crate::pages::Message> {
.width(Length::Fill)
.align_x(cosmic::iced_core::alignment::Horizontal::Center),
)
.add(
settings::item::builder(&*descriptions[3])
.description(&*descriptions[4])
.toggler(page.theme_builder.is_frosted, Message::Frosted),
)
.apply(Element::from)
.map(crate::pages::Message::Appearance)
})