chore: use master branch of libcosmic

This commit is contained in:
Michael Aaron Murphy 2023-01-30 22:06:07 +01:00
parent 6bbe3e97aa
commit 25e3aeb0ee
No known key found for this signature in database
GPG key ID: B2732D4240C9212C
4 changed files with 36 additions and 43 deletions

View file

@ -216,7 +216,6 @@ impl Application for SettingsApp {
#[allow(clippy::too_many_lines)]
fn view(&self) -> Element<Message> {
let start = std::time::Instant::now();
let (nav_bar_message, nav_bar_toggled) = if self.is_condensed {
(
Message::ToggleNavBarCondensed,
@ -290,11 +289,6 @@ impl Application for SettingsApp {
.height(Length::Fill)
.into();
eprintln!(
"view: {:?}",
std::time::Instant::now().duration_since(start)
);
column(vec![header, content]).into()
}