mirror of
https://github.com/emilk/egui.git
synced 2026-08-31 22:00:03 -04:00
Fix the accessor for desired rows.
This commit is contained in:
@@ -197,8 +197,8 @@ impl<'t> TextEdit<'t> {
|
|||||||
/// Set the number of rows to show by default.
|
/// Set the number of rows to show by default.
|
||||||
/// The default for singleline text is `1`.
|
/// The default for singleline text is `1`.
|
||||||
/// The default for multiline text is `4`.
|
/// The default for multiline text is `4`.
|
||||||
pub fn desired_rows(mut self, desired_width: f32) -> Self {
|
pub fn desired_rows(mut self, desired_height_rows: usize) -> Self {
|
||||||
self.desired_width = Some(desired_width);
|
self.desired_height_rows = desired_height_rows;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user