installer: at descriptor registartion step, disable previous button if device processing

This commit is contained in:
pythcoiner 2024-07-11 02:55:51 +02:00
parent ccc88421b3
commit f457dd447c

View File

@ -750,7 +750,11 @@ pub fn register_descriptor<'a>(
})
.spacing(50),
true,
Some(Message::Previous),
if !processing {
Some(Message::Previous)
} else {
None
}
)
}