1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 13:50:04 -04:00

Add multipass option and checkbox

This commit is contained in:
Emil Ernerfeldt
2021-11-08 23:24:48 +01:00
parent 42110f8cd5
commit e0a8e8f36a
2 changed files with 12 additions and 0 deletions

View File

@@ -100,6 +100,11 @@ pub struct Options {
/// but is a signal to any backend that we want the [`crate::Output::events`] read out loud.
/// Screen readers is an experimental feature of egui, and not supported on all platforms.
pub screen_reader: bool,
/// Enable experimental two-pass layout.
///
/// See https://github.com/emilk/egui/issues/843
pub multi_pass: bool,
}
// ----------------------------------------------------------------------------