Add body_unindented
to HeaderResponse
(#1731)
This commit is contained in:
parent
980a06b95e
commit
0c65a9df41
1 changed files with 17 additions and 0 deletions
|
@ -287,6 +287,23 @@ impl<'ui, HeaderRet> HeaderResponse<'ui, HeaderRet> {
|
||||||
body_response,
|
body_response,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns the response of the collapsing button, the custom header, and the custom body, without indentation.
|
||||||
|
pub fn body_unindented<BodyRet>(
|
||||||
|
mut self,
|
||||||
|
add_body: impl FnOnce(&mut Ui) -> BodyRet,
|
||||||
|
) -> (
|
||||||
|
Response,
|
||||||
|
InnerResponse<HeaderRet>,
|
||||||
|
Option<InnerResponse<BodyRet>>,
|
||||||
|
) {
|
||||||
|
let body_response = self.state.show_body_unindented(self.ui, add_body);
|
||||||
|
(
|
||||||
|
self.toggle_button_response,
|
||||||
|
self.header_response,
|
||||||
|
body_response,
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue