Compare commits
No commits in common. "f649cf72eb0169d2df0bea0438b617014c40a203" and "0043cf8a952887a182c59850f97af1f2d5cbdf55" have entirely different histories.
f649cf72eb
...
0043cf8a95
File diff suppressed because it is too large
Load Diff
|
@ -30,7 +30,7 @@ num-derive = "0.4"
|
|||
num-traits = "0.2"
|
||||
oneshot = "0.1"
|
||||
pollster = "0.4"
|
||||
rfd = { version = "0.15", default-features = false, features = ["xdg-portal", "async-std"]}
|
||||
rfd = { version = "0.15", default-features = false, features = ["xdg-portal", "tokio"]}
|
||||
rtrb = "0.3"
|
||||
rubato = "0.16"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
|
|
|
@ -4,7 +4,6 @@ use egui::{
|
|||
Context, FontData, FontDefinitions, FontFamily, IconData, TextWrapMode, ViewportBuilder,
|
||||
ViewportCommand, ViewportId, ViewportInfo,
|
||||
ahash::{HashMap, HashMapExt},
|
||||
style::ScrollStyle,
|
||||
};
|
||||
use gilrs::{EventType, Gilrs};
|
||||
use tracing::{error, warn};
|
||||
|
@ -378,7 +377,6 @@ impl Viewport {
|
|||
ctx.style_mut(|s| {
|
||||
s.wrap_mode = Some(TextWrapMode::Extend);
|
||||
s.visuals.menu_rounding = Default::default();
|
||||
s.spacing.scroll = ScrollStyle::thin();
|
||||
});
|
||||
egui_extras::install_image_loaders(&ctx);
|
||||
|
||||
|
|
Loading…
Reference in New Issue