From e8189d57669cd73dd7489f17227d2508cc648888 Mon Sep 17 00:00:00 2001 From: MrGVSV <49806985+MrGVSV@users.noreply.github.com> Date: Tue, 18 Jan 2022 14:01:18 -0800 Subject: [PATCH] Added TODO --- examples/tabs/tabs.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/tabs/tabs.rs b/examples/tabs/tabs.rs index 1a169e1..5d43a80 100644 --- a/examples/tabs/tabs.rs +++ b/examples/tabs/tabs.rs @@ -40,7 +40,7 @@ fn TabDemo() { ..Default::default() }; - // This is not the most ideal way to generate tabs. For one, the `content` has no access to its actual context + // TODO: This is not the most ideal way to generate tabs. For one, the `content` has no access to its actual context // (i.e. where it actually exists in the hierarchy). Additionally, it would be better if tabs were created as // children of `TabBox`. These are issues that will be addressed in the future, so for now, this will work. let tabs = vec![ @@ -147,4 +147,4 @@ fn main() { .add_plugin(BevyKayakUIPlugin) .add_startup_system(startup) .run(); -} \ No newline at end of file +} -- GitLab