From f4c7a741905884f6cedec95f5c1c4b13016e0cca Mon Sep 17 00:00:00 2001 From: Huon Imberger Date: Sat, 25 Nov 2023 12:05:45 +1100 Subject: [PATCH] Fix EguiWantsFocus docs saying true instead of false --- src/egui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/egui.rs b/src/egui.rs index 3441194..1db062b 100644 --- a/src/egui.rs +++ b/src/egui.rs @@ -8,7 +8,7 @@ use bevy::prelude::{DetectChangesMut, Query, ResMut, Resource}; /// where both egui and the camera are using the input events, which is not desirable. /// /// This is re-exported in case it's useful. I recommend only using input events if both -/// `prev` and `curr` are true. +/// `prev` and `curr` are false. #[derive(Resource, PartialEq, Eq, Default)] pub struct EguiWantsFocus { /// Whether egui wanted focus on the previous frame