mirror of
https://github.com/opentx/opentx.git
synced 2025-07-25 17:25:13 +03:00
[sky9x] It was impossible to select UpperCase in names
This commit is contained in:
parent
0df8509289
commit
c7228194df
3 changed files with 1 additions and 7 deletions
|
@ -53,7 +53,6 @@ extern bool eeModelExists(uint8_t id) ;
|
||||||
extern bool eeCopyModel(uint8_t dst, uint8_t src);
|
extern bool eeCopyModel(uint8_t dst, uint8_t src);
|
||||||
extern void eeSwapModels(uint8_t id1, uint8_t id2);
|
extern void eeSwapModels(uint8_t id1, uint8_t id2);
|
||||||
|
|
||||||
|
|
||||||
#define DISPLAY_PROGRESS_BAR(x)
|
#define DISPLAY_PROGRESS_BAR(x)
|
||||||
|
|
||||||
struct t_file_entry
|
struct t_file_entry
|
||||||
|
|
|
@ -382,11 +382,6 @@ void menuMainView(uint8_t event)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if 0
|
|
||||||
// in case we want a progress bar in the Main Views
|
|
||||||
DISPLAY_PROGRESS_BAR(20*FW+1);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef DSM2
|
#ifdef DSM2
|
||||||
if (s_bind_mode) // Issue 98
|
if (s_bind_mode) // Issue 98
|
||||||
lcd_putsAtt(15*FW, 0, PSTR("BIND"), 0);
|
lcd_putsAtt(15*FW, 0, PSTR("BIND"), 0);
|
||||||
|
|
|
@ -507,7 +507,7 @@ void EditName(uint8_t x, uint8_t y, char *name, uint8_t size, uint8_t event, boo
|
||||||
if (s_editMode>0) {
|
if (s_editMode>0) {
|
||||||
uint8_t next = cur;
|
uint8_t next = cur;
|
||||||
char c = name[next];
|
char c = name[next];
|
||||||
char v = c;
|
int8_t v = c;
|
||||||
if (p1valdiff || event==EVT_KEY_FIRST(KEY_DOWN) || event==EVT_KEY_FIRST(KEY_UP)
|
if (p1valdiff || event==EVT_KEY_FIRST(KEY_DOWN) || event==EVT_KEY_FIRST(KEY_UP)
|
||||||
|| event==EVT_KEY_REPT(KEY_DOWN) || event==EVT_KEY_REPT(KEY_UP)) {
|
|| event==EVT_KEY_REPT(KEY_DOWN) || event==EVT_KEY_REPT(KEY_UP)) {
|
||||||
v = checkIncDec(event, abs(v), 0, ZCHAR_MAX, 0);
|
v = checkIncDec(event, abs(v), 0, ZCHAR_MAX, 0);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue