mirror of https://github.com/espruino/BangleApps
calendar: shorten settings to prevent clipping
parent
a67ef83bd8
commit
d56f9e3a8b
|
@ -9,6 +9,6 @@ Basic calendar
|
||||||
|
|
||||||
## Settings
|
## Settings
|
||||||
|
|
||||||
- Starts on Sunday: whether the calendar should start on Sunday (default is Monday).
|
- Starts Sunday: whether the calendar should start on Sunday (default is Monday).
|
||||||
- Non-dithering Colors: use non-dithering colors (default, recommended for Bangle 2) or the original color scheme.
|
- B2 Colors: use non-dithering colors (default, recommended for Bangle 2) or the original color scheme.
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
E.showMenu({
|
E.showMenu({
|
||||||
"": { "title": "Calendar" },
|
"": { "title": "Calendar" },
|
||||||
"< Back": () => back(),
|
"< Back": () => back(),
|
||||||
'Start on Sunday': {
|
'Start Sunday': {
|
||||||
value: settings.startOnSun,
|
value: settings.startOnSun,
|
||||||
format: v => v ? "Yes" : "No",
|
format: v => v ? "Yes" : "No",
|
||||||
onchange: v => {
|
onchange: v => {
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
writeSettings();
|
writeSettings();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
'Non-dithering colors': {
|
'B2 Colors': {
|
||||||
value: settings.ndColors,
|
value: settings.ndColors,
|
||||||
format: v => v ? "Yes" : "No",
|
format: v => v ? "Yes" : "No",
|
||||||
onchange: v => {
|
onchange: v => {
|
||||||
|
|
Loading…
Reference in New Issue