Skip to content

Commit

Permalink
WIP Hack around UTCOffset panic
Browse files Browse the repository at this point in the history
  • Loading branch information
ids1024 committed Feb 13, 2024
1 parent 6bfd6d9 commit c5a8eda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,8 @@ impl State {
.with_context(|| "Failed to load languages")
.unwrap();

let local_offset = UtcOffset::current_local_offset().expect("No yet multithreaded");
// let local_offset = UtcOffset::current_local_offset().expect("No yet multithreaded");
let local_offset = UtcOffset::UTC;
let clock = Clock::new();
let config = Config::load(&handle);
let compositor_state = CompositorState::new::<Self>(dh);
Expand Down

0 comments on commit c5a8eda

Please sign in to comment.