|
@@ -10,7 +10,7 @@ fn main() {
|
|
|
fn app(cx: Scope) -> Element {
|
|
|
let hue = use_state(cx, || 0.0);
|
|
|
let brightness = use_state(cx, || 0.0);
|
|
|
- let tui_query: &Query = cx.consume_context().unwrap();
|
|
|
+ let tui_query: Query = cx.consume_context().unwrap();
|
|
|
// disable templates so that every node has an id and can be queried
|
|
|
cx.render(rsx! {
|
|
|
div{
|
|
@@ -18,7 +18,7 @@ fn app(cx: Scope) -> Element {
|
|
|
background_color: "hsl({hue}, 70%, {brightness}%)",
|
|
|
onmousemove: move |evt| {
|
|
|
if let RenderReturn::Sync(Some(node)) = cx.root_node() {
|
|
|
- if let Some(id) = node.root_ids[0].get() {
|
|
|
+ if let Some(id) = node.root_ids.get(0){
|
|
|
let node = tui_query.get(id);
|
|
|
let Size{width, height} = node.size().unwrap();
|
|
|
let pos = evt.inner().element_coordinates();
|