make run sensors sane and adjust on_edit to just use ui as ctx (so two run calls needed)

This commit is contained in:
2025-09-24 22:46:55 -04:00
parent 3463682d62
commit 443e13f094
4 changed files with 78 additions and 82 deletions

View File

@@ -1,9 +1,9 @@
/// intentionally does not implement copy or ~~clone~~ HEEELP
/// intentionally does not implement copy or clone
/// which should make it harder to misuse;
/// the idea is to generally try to guarantee all IDs
/// point to something valid, although duplicate
/// gets around this if needed
#[derive(Eq, Hash, PartialEq, Debug, Clone)]
#[derive(Eq, Hash, PartialEq, Debug)]
pub struct Id(u64);
#[derive(Default)]