Explorar o código

fix formatting

Evan Almloff hai 1 ano
pai
achega
bd387d601c
Modificáronse 2 ficheiros con 5 adicións e 3 borrados
  1. 2 2
      packages/html/src/events/drag.rs
  2. 3 1
      packages/web/src/dom.rs

+ 2 - 2
packages/html/src/events/drag.rs

@@ -1,6 +1,6 @@
 use crate::geometry::{ClientPoint, Coordinates, ElementPoint, PagePoint, ScreenPoint};
 use crate::input_data::{MouseButton, MouseButtonSet};
-use crate::prelude::PointInteraction;
+
 use dioxus_core::Event;
 use keyboard_types::Modifiers;
 
@@ -132,7 +132,7 @@ impl HasMouseData for SerializedDragData {
 }
 
 #[cfg(feature = "serialize")]
-impl PointInteraction for SerializedDragData {
+impl crate::prelude::PointInteraction for SerializedDragData {
     fn client_coordinates(&self) -> ClientPoint {
         self.mouse.client_coordinates()
     }

+ 3 - 1
packages/web/src/dom.rs

@@ -330,7 +330,9 @@ impl HtmlEventConverter for WebEventConverter {
 
     fn convert_mounted_data(&self, event: &dioxus_html::PlatformEventData) -> MountedData {
         #[cfg(feature = "mounted")]
-        {MountedData::from(downcast_event(event).element.clone())}
+        {
+            MountedData::from(downcast_event(event).element.clone())
+        }
         #[cfg(not(feature = "mounted"))]
         {
             panic!("mounted events are not supported without the mounted feature on the dioxus-web crate enabled")