1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-15 20:19:23 +00:00

WIP - comment

This commit is contained in:
grdddj 2023-05-12 13:09:07 +02:00
parent 3db1fb138e
commit e0161a99b6

View File

@ -416,7 +416,8 @@ impl Rect {
/// Split `Rect` into left, center and right, given the center one's
/// `width`. Center element is symmetric, left and right have the same
/// size.
/// size. In case left and right cannot be the same size, right is 1px
/// wider.
pub const fn split_center(self, width: i16) -> (Self, Self, Self) {
let left_right_width = (self.width() - width) / 2;
let (left, center_right) = self.split_left(left_right_width);