fix test setup

This commit is contained in:
wolfyzhuang 2024-03-10 22:48:10 +00:00
parent cb8f5069b7
commit 181b7f6767
2 changed files with 10 additions and 1 deletions

View File

@ -81,4 +81,10 @@ impl ExternalLink {
}
}
impl ExternalLinkRef {
impl ExternalLinkRef {
pub fn set_url(&mut self, url: &str) {
if let Some(mut inner) = self.borrow_mut() {
inner.set_url(url);
}
}
}

View File

@ -0,0 +1,3 @@
use makepad_widgets::*;
live_d