Skip to content

Commit

Permalink
Update output.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
rustbasic authored Jun 12, 2024
1 parent bf887a5 commit 99bfca4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions crates/egui/src/data/output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,15 @@ impl FullOutput {
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
pub struct IMEOutput {
/// is visible IME?
pub visible: bool,

/// is allowed IME?
pub allowed_ime: bool,

/// Indicates whether the IME is currently active.
pub ime_enabled: bool,

/// Where the [`crate::TextEdit`] is located on screen.
pub rect: crate::Rect,

Expand Down

0 comments on commit 99bfca4

Please sign in to comment.