You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// **NOTE**: we need to request repaint if we want UI to update even if we're not otherwise interacting with it.
76
-
ctx.request_repaint();
77
-
// ctx.request_repaint_after(Duration::from_millis(100)); // if there's no other interaction 100ms seems to result in faster update than just repaint alone...
// **NOTE**: we need to request repaint if we want UI to update even if we're not otherwise interacting with it.
77
+
ctx.request_repaint();
78
+
// ctx.request_repaint_after(Duration::from_millis(100)); // if there's no other interaction 100ms seems to result in faster update than just repaint alone...
Copy file name to clipboardExpand all lines: crates/utilities/src/hidden_value.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ use std::{env, ffi::OsStr, num::NonZeroUsize};
55
55
use bon::bon;
56
56
use dotenvy::dotenv;
57
57
use thiserror::Error;
58
-
use tracing::{event,LevelasL, instrument as instrument_nobonconflict};// TODO: instrument_nobonconflict temporary to prevent unavoidable compiler warnings from bon
58
+
use tracing::{LevelasL, event, instrument as instrument_nobonconflict};// TODO: instrument_nobonconflict temporary to prevent unavoidable compiler warnings from bon
0 commit comments