Skip to content

Commit

Permalink
Fix the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vladbat00 committed Jan 5, 2025
1 parent cb9a65a commit b8723a4
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,27 +260,28 @@ impl Default for EguiContextSettings {
#[derive(Clone, Debug, Reflect, PartialEq, Eq)]
/// All the systems are enabled by default. These settings exist within both [`EguiGlobalSettings`] and [`EguiContextSettings`].
pub struct EguiInputSystemSettings {
/// Controls running of the [`run_write_modifiers_keys_state_system`] system.
/// Controls running of the [`write_modifiers_keys_state_system`] system.
pub run_write_modifiers_keys_state_system: bool,
/// Controls running of the [`run_write_window_pointer_moved_events_system`] system.
/// Controls running of the [`write_window_pointer_moved_events_system`] system.
pub run_write_window_pointer_moved_events_system: bool,
/// Controls running of the [`run_write_pointer_button_events_system`] system.
/// Controls running of the [`write_pointer_button_events_system`] system.
pub run_write_pointer_button_events_system: bool,
/// Controls running of the [`run_write_window_touch_events_system`] system.
/// Controls running of the [`write_window_touch_events_system`] system.
pub run_write_window_touch_events_system: bool,
/// Controls running of the [`run_write_non_window_pointer_moved_events_system`] system.
/// Controls running of the [`write_non_window_pointer_moved_events_system`] system.
pub run_write_non_window_pointer_moved_events_system: bool,
/// Controls running of the [`run_write_mouse_wheel_events_system`] system.
/// Controls running of the [`write_mouse_wheel_events_system`] system.
pub run_write_mouse_wheel_events_system: bool,
/// Controls running of the [`run_write_non_window_touch_events_system`] system.
/// Controls running of the [`write_non_window_touch_events_system`] system.
pub run_write_non_window_touch_events_system: bool,
/// Controls running of the [`run_write_keyboard_input_events_system`] system.
/// Controls running of the [`write_keyboard_input_events_system`] system.
pub run_write_keyboard_input_events_system: bool,
/// Controls running of the [`run_write_ime_events_system`] system.
/// Controls running of the [`write_ime_events_system`] system.
pub run_write_ime_events_system: bool,
/// Controls running of the [`run_write_text_agent_channel_events_system`] system.
/// Controls running of the [`write_text_agent_channel_events_system`] system.
#[cfg(target_arch = "wasm32")]
pub run_write_text_agent_channel_events_system: bool,
/// Controls running of the [`run_write_web_clipboard_events_system`] system.
/// Controls running of the [`web_clipboard::write_web_clipboard_events_system`] system.
#[cfg(all(feature = "manage_clipboard", target_arch = "wasm32"))]
pub run_write_web_clipboard_events_system: bool,
}
Expand Down

0 comments on commit b8723a4

Please sign in to comment.