Silence errors

This commit is contained in:
Imbus 2024-06-03 10:27:00 +02:00
parent b70afbb92a
commit 7cc34f8ecc

View file

@ -1,3 +1,5 @@
#![allow(unused_imports, unused_variables, dead_code)]
use iced::theme::{self, Theme}; use iced::theme::{self, Theme};
use iced::widget::{button, column, row, text}; use iced::widget::{button, column, row, text};
use iced::widget::{text_input, TextInput}; use iced::widget::{text_input, TextInput};
@ -75,7 +77,6 @@ impl Sandbox for Counter {
Message::SwitchTab(tab) => { Message::SwitchTab(tab) => {
self.current_tab = tab; self.current_tab = tab;
} }
_ => {}
} }
} }