mirror of
https://github.com/emilk/egui.git
synced 2026-08-29 04:40:03 -04:00
Remove impl Into<f32> arguments (#8194)
* Closes https://github.com/emilk/egui/issues/8179
This commit is contained in:
@@ -334,7 +334,7 @@ fn drag_and_drop_test(ui: &mut egui::Ui) {
|
||||
assert!(col < COLS, "The coll should be less than: {COLS}");
|
||||
|
||||
let value: String = value.into();
|
||||
let id = Id::new(format!("%{}% {}", self.counter, &value));
|
||||
let id = Id::new(format!("%{}% {}", self.counter, value));
|
||||
self.data.insert(id, value);
|
||||
let viewport_data = self.containers_data.entry(container).or_insert_with(|| {
|
||||
let mut res = Vec::new();
|
||||
|
||||
Reference in New Issue
Block a user