1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 16:55:20 +03:00

[sky9x] It was impossible to select UpperCase in names

This commit is contained in:
bsongis 2012-09-03 23:19:48 +00:00
parent 0df8509289
commit c7228194df
3 changed files with 1 additions and 7 deletions

View file

@ -53,7 +53,6 @@ extern bool eeModelExists(uint8_t id) ;
extern bool eeCopyModel(uint8_t dst, uint8_t src);
extern void eeSwapModels(uint8_t id1, uint8_t id2);
#define DISPLAY_PROGRESS_BAR(x)
struct t_file_entry

View file

@ -382,11 +382,6 @@ void menuMainView(uint8_t event)
}
#endif
#if 0
// in case we want a progress bar in the Main Views
DISPLAY_PROGRESS_BAR(20*FW+1);
#endif
#ifdef DSM2
if (s_bind_mode) // Issue 98
lcd_putsAtt(15*FW, 0, PSTR("BIND"), 0);

View file

@ -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) {
uint8_t next = cur;
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)
|| event==EVT_KEY_REPT(KEY_DOWN) || event==EVT_KEY_REPT(KEY_UP)) {
v = checkIncDec(event, abs(v), 0, ZCHAR_MAX, 0);