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