mirror of https://github.com/espruino/BangleApps
commit
e8157f4c2f
|
@ -3,3 +3,4 @@
|
|||
Change back entry to menu option
|
||||
Allow changing widgets into all areas, including bottom widget bar
|
||||
0.03: Fix editing widgets whose draw method takes the widget
|
||||
0.04: Remove double-sort
|
||||
|
|
|
@ -14,7 +14,6 @@ Bangle.loadWidgets = (o => ()=>{
|
|||
const W = global.WIDGETS;
|
||||
global.WIDGETS = {};
|
||||
Object.keys(W)
|
||||
.sort()
|
||||
.sort((a, b) => (0|W[b].sortorder)-(0|W[a].sortorder))
|
||||
.forEach(k => global.WIDGETS[k] = W[k]);
|
||||
})(Bangle.loadWidgets);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"id": "wid_edit",
|
||||
"version": "0.03",
|
||||
"version": "0.04",
|
||||
"name": "Widget Editor",
|
||||
"icon": "icon.png",
|
||||
"description": "Customize widget locations",
|
||||
|
|
Loading…
Reference in New Issue