File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 24240.22: Add less padding between launcher items, use new font if available in 2v26+
25250.23: Draw a placeholder screen right at the start to speed up apparent boot time
26260.24: Fix fullscreen when fastloading the launcher. (TODO:fix back btn flicker)
27+ Fix showClocks setting not taking effect by now clearing cache when
28+ changing those settings.
Original file line number Diff line number Diff line change 1010 settings [ key ] = value ;
1111 require ( "Storage" ) . write ( "launch.json" , settings ) ;
1212 }
13+ function clearCache ( ) {
14+ require ( "Storage" ) . erase ( "launch.cache.json" )
15+ }
1316 const appMenu = {
1417 "" : { "title" : /*LANG*/ "Launcher" } ,
1518 /*LANG*/ "< Back" : back ,
2629 } ,
2730 /*LANG*/ "Show Clocks" : {
2831 value : settings . showClocks == true ,
29- onchange : ( m ) => { save ( "showClocks" , m ) }
32+ onchange : ( m ) => {
33+ save ( "showClocks" , m ) ;
34+ clearCache ( ) ;
35+ }
3036 } ,
3137 /*LANG*/ "Fullscreen" : {
3238 value : settings . fullscreen == true ,
You can’t perform that action at this time.
0 commit comments