diff --git a/crates/eframe/src/lib.rs b/crates/eframe/src/lib.rs index bae0a3fb4dd9..fa0e75d2aa65 100644 --- a/crates/eframe/src/lib.rs +++ b/crates/eframe/src/lib.rs @@ -274,7 +274,9 @@ pub fn run_native( /// The simplest way to get started when writing a native app. /// -/// This does NOT support persistence. For that you need to use [`run_native`]. +/// This does NOT support persistence of custom user data. For that you need to use [`run_native`]. +/// However, it DOES support persistence of egui data (window positions and sizes, how far the user has scrolled in a +/// [`ScrollArea`](egui::ScrollArea), etc.) if the persistence feature is enabled. /// /// # Example /// ``` no_run