1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-27 15:13:12 -04:00

Merge pull request #52 from phoglund/fix_desired_rows

Fix the accessor for desired rows.
This commit is contained in:
Emil Ernerfeldt
2020-11-26 14:34:00 +01:00
committed by GitHub

View File

@@ -197,8 +197,8 @@ impl<'t> TextEdit<'t> {
/// Set the number of rows to show by default.
/// The default for singleline text is `1`.
/// The default for multiline text is `4`.
pub fn desired_rows(mut self, desired_width: f32) -> Self {
self.desired_width = Some(desired_width);
pub fn desired_rows(mut self, desired_height_rows: usize) -> Self {
self.desired_height_rows = desired_height_rows;
self
}
}