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:
Thorsten Ball 2024-06-28 15:58:19 +02:00 committed by GitHub
parent 2972bdc0e2
commit 3cabd4bf64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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",