whoops ... forgot to remove some experimental code ... which doesn't work :-(
This commit is contained in:
parent
e17146bdfa
commit
e18574273a
1 changed files with 2 additions and 8 deletions
|
@ -482,7 +482,6 @@ Dynamic = {
|
|||
m.load();
|
||||
m.flash_count = 0;
|
||||
m.visible = 1;
|
||||
m.on_flash_exit_func = func {};
|
||||
return m;
|
||||
},
|
||||
del : func {
|
||||
|
@ -512,11 +511,8 @@ Dynamic = {
|
|||
me.add_derived_props(n);
|
||||
return n;
|
||||
},
|
||||
flash : func(v, fun = nil) {
|
||||
flash : func(v) {
|
||||
me.flash_count = v;
|
||||
if (fun != nil) {
|
||||
me.on_flash_exit_func = fun;
|
||||
}
|
||||
me._flash_();
|
||||
},
|
||||
_flash_ : func {
|
||||
|
@ -530,8 +526,6 @@ Dynamic = {
|
|||
if (me.flash_count) {
|
||||
me.flash_count -= 1;
|
||||
settimer(func { me._flash_() }, 0.3);
|
||||
} else {
|
||||
me.on_flash_exit_func();
|
||||
}
|
||||
},
|
||||
};
|
||||
|
@ -616,7 +610,7 @@ ModelMgr = {
|
|||
me.static = left;
|
||||
}
|
||||
}
|
||||
if (me.dynamic != nil) { # last one removed
|
||||
if (me.dynamic != nil) {
|
||||
me.dynamic.flash(4);
|
||||
}
|
||||
me.display_status(me.modelpath);
|
||||
|
|
Loading…
Add table
Reference in a new issue