Fix markdown import in iced_widget

This commit is contained in:
Héctor Ramón Jiménez 2024-07-18 14:54:26 +02:00
parent 47b7a36f36
commit 06dc507beb
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -7,7 +7,6 @@ use crate::core;
use crate::core::widget::operation;
use crate::core::{Element, Length, Pixels, Widget};
use crate::keyed;
use crate::markdown::{self};
use crate::overlay;
use crate::pick_list::{self, PickList};
use crate::progress_bar::{self, ProgressBar};
@ -705,7 +704,7 @@ pub fn span<'a, Font>(
#[cfg(feature = "markdown")]
#[doc(inline)]
pub use markdown::view as markdown;
pub use crate::markdown::view as markdown;
/// Creates a new [`Checkbox`].
///