1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-05-28 19:58:45 +00:00

feat(ui): Add visibility-checking function to Maybe struct

This commit is contained in:
Lukas Bielesch 2025-01-14 18:22:02 +01:00 committed by obrusvit
parent 28d9c8c7cd
commit a7c3e6c5db

View File

@ -66,6 +66,10 @@ where
pub fn inner_mut(&mut self) -> &mut T {
&mut self.inner
}
pub fn is_visible(&self) -> bool {
self.visible
}
}
impl<T> Component for Maybe<T>