-
And I think that's good. I'm not really sure I understand the reasoning behind making the weather app behave differently to every other app (going to launcher instead of the clock) but my preference would be to make 'back' go back to the clock.
The idea was less changing the way the app behaves and more removing the need to manually remove
Bangle.CLOCK
after setting the UI to clock. An "clocklike" UI that does not set that marker var would be enough for that. The clock UI messes with some widgets if users forget to removeBangle.CLOCK
and it is not easy to find if none of those widgets are randomly installed during testing.I think we'd already discussed this in a PR?
Yeah, I think we did :) Actually
fastload
already includes some optional code to redirect close to every load to launcher so always going to clock is fine with me. -
I'm not really sure I understand the reasoning behind making the weather app behave differently to every other app (going to launcher instead of the clock)
Probably because I just copied it from some clock code without thinking too much about it ;-)
And after that we just kept preserving existing behaviour, which is how we ended up withBangle.setUI("clock");delete Bangle.CLOCK;
my preference would be to make 'back' go back to the clock.
Yes, I agree.
Maybe we should even add aBangle.setUI("app")
mode, where the middle button goes back to the clock?
Yes, absolutely!
I think it would still work fine. I just tested:
And I think that's good. I'm not really sure I understand the reasoning behind making the weather app behave differently to every other app (going to launcher instead of the clock) but my preference would be to make 'back' go back to the clock.
Yes, I guess this might clear things up? I'm just wary of adding to the existing pile of documentation when it seems not that many people read it anyway :)
I think we'd already discussed this in a PR? Afaik nothing stops someone from making a one-line custom boot code app that does
Bangle.showClock = Bangle.showLauncher
if this is what they really want.