mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-07 02:57:34 +00:00
gpui example: Fix SVG not showing up when running from root (#13648)
Took me a while to figure out that I can't run cargo run -p gpui --example animation and that it has to run in the `gpui` crate. So I thought I'd fix this. Release Notes: - N/A
This commit is contained in:
parent
2972bdc0e2
commit
3cabd4bf64
1 changed files with 6 additions and 1 deletions
|
@ -23,6 +23,11 @@ impl AssetSource for Assets {
|
|||
}
|
||||
}
|
||||
|
||||
const ARROW_CIRCLE_SVG: &'static str = concat!(
|
||||
env!("CARGO_MANIFEST_DIR"),
|
||||
"/examples/image/arrow_circle.svg"
|
||||
);
|
||||
|
||||
struct AnimationExample {}
|
||||
|
||||
impl Render for AnimationExample {
|
||||
|
@ -42,7 +47,7 @@ impl Render for AnimationExample {
|
|||
.child(
|
||||
svg()
|
||||
.size_8()
|
||||
.path("examples/image/arrow_circle.svg")
|
||||
.path(ARROW_CIRCLE_SVG)
|
||||
.text_color(black())
|
||||
.with_animation(
|
||||
"image_circle",
|
||||
|
|
Loading…
Reference in a new issue