1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 14:50:03 -04:00

More cleaning

This commit is contained in:
Konkitoman
2023-08-04 10:27:22 +03:00
parent 6a7d162d40
commit 172be33b40
22 changed files with 50 additions and 58 deletions

View File

@@ -6,7 +6,6 @@ use eframe::glow;
#[cfg(target_arch = "wasm32")]
use core::any::Any;
use std::sync::{Arc, RwLock};
#[derive(Default)]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
@@ -185,7 +184,7 @@ pub struct WrapApp {
#[cfg(any(feature = "glow", feature = "wgpu"))]
custom3d: Option<crate::apps::Custom3d>,
dropped_files: Arc<RwLock<Vec<egui::DroppedFile>>>,
dropped_files: Vec<egui::DroppedFile>,
}
impl WrapApp {
@@ -464,20 +463,19 @@ impl WrapApp {
// Collect dropped files:
ctx.input(|i| {
if !i.raw.dropped_files.is_empty() {
*self.dropped_files.write().unwrap() = i.raw.dropped_files.clone();
self.dropped_files = i.raw.dropped_files.clone();
}
});
// Show dropped files (if any):
let is_empty = self.dropped_files.read().unwrap().is_empty();
let is_empty = self.dropped_files.is_empty();
if !is_empty {
let mut open = true;
let dropped_files = self.dropped_files.clone();
egui::Window::new("Dropped files")
.open(&mut open)
.show(ctx, move |ui| {
let dropped_files = &*dropped_files.read().unwrap();
for file in dropped_files {
.show(ctx, |ui| {
for file in &dropped_files {
let mut info = if let Some(path) = &file.path {
path.display().to_string()
} else if !file.name.is_empty() {
@@ -492,7 +490,7 @@ impl WrapApp {
}
});
if !open {
self.dropped_files.write().unwrap().clear();
self.dropped_files.clear();
}
}
}