summaryrefslogtreecommitdiff
path: root/apps/plugins/euroconverter.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/euroconverter.c')
-rw-r--r--apps/plugins/euroconverter.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/plugins/euroconverter.c b/apps/plugins/euroconverter.c
index 97ec21dd98..224fb85703 100644
--- a/apps/plugins/euroconverter.c
+++ b/apps/plugins/euroconverter.c
@@ -290,14 +290,15 @@ static void display(longlong_t euro, longlong_t home, bool pos)
290 } 290 }
291 else 291 else
292 rb->lcd_puts_scroll(1,1,str); 292 rb->lcd_puts_scroll(1,1,str);
293
294 rb->lcd_update();
293} 295}
294 296
295 297
296/* Show country Abbreviation */ 298/* Show country Abbreviation */
297static void show_abbrev(void) 299static void show_abbrev(void)
298{ 300{
299 rb->lcd_puts(2,1,abbrev_str[country]); 301 rb->splash(HZ*3/4,abbrev_str[country]);
300 rb->sleep(HZ*3/4);
301} 302}
302 303
303 304
@@ -325,6 +326,7 @@ static void currency_menu(void)
325 { 326 {
326 rb->lcd_puts(0,0,"Currency:"); 327 rb->lcd_puts(0,0,"Currency:");
327 rb->lcd_puts(0,1,currency_str[c]); 328 rb->lcd_puts(0,1,currency_str[c]);
329 rb->lcd_update();
328 switch (rb->button_get(true)) 330 switch (rb->button_get(true))
329 { 331 {
330 case BUTTON_RIGHT|BUTTON_REL: 332 case BUTTON_RIGHT|BUTTON_REL:
@@ -361,6 +363,7 @@ static int euro_menu(void)
361 rb->lcd_puts(0,0," Currency"); 363 rb->lcd_puts(0,0," Currency");
362 rb->lcd_puts(0,1," Exit"); 364 rb->lcd_puts(0,1," Exit");
363 rb->lcd_putc(0,c,0xe110); 365 rb->lcd_putc(0,c,0xe110);
366 rb->lcd_update();
364 367
365 switch (rb->button_get(true)) 368 switch (rb->button_get(true))
366 { 369 {
@@ -394,6 +397,7 @@ static void euro_exit(void *parameter)
394 397
395 //Clear the screen 398 //Clear the screen
396 rb->lcd_clear_display(); 399 rb->lcd_clear_display();
400 rb->lcd_update();
397} 401}
398 402
399 403