fix: update libcosmic and remove resize option from workspaces window builder

This commit is contained in:
Ashley Wulber 2023-06-16 20:37:02 -04:00 committed by Ashley Wulber
parent 5a15ef8d7f
commit 93385bc42c
4 changed files with 35 additions and 37 deletions

View file

@ -14,3 +14,4 @@ once_cell = "1"
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.4"
rust-embed = "6.3.0"
tracing = "0.1"

View file

@ -179,7 +179,7 @@ impl Application for Window {
Message::CurrentGraphics(match cur_graphics {
Ok(g) => Some(g),
Err(err) => {
dbg!(err);
tracing::error!("{:?}", err);
None
}
})