summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/rockpaint.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/rockpaint.c b/apps/plugins/rockpaint.c
index 77259e4fbb..3ce37a813d 100644
--- a/apps/plugins/rockpaint.c
+++ b/apps/plugins/rockpaint.c
@@ -1346,6 +1346,7 @@ static void draw_text( int x, int y )
1346 break; 1346 break;
1347 1347
1348 case TEXT_MENU_PREVIEW: 1348 case TEXT_MENU_PREVIEW:
1349 rb->lcd_set_foreground( rp_colors[ drawcolor ] );
1349 while( 1 ) 1350 while( 1 )
1350 { 1351 {
1351 unsigned int button; 1352 unsigned int button;
@@ -1387,6 +1388,7 @@ static void draw_text( int x, int y )
1387 break; 1388 break;
1388 1389
1389 case TEXT_MENU_APPLY: 1390 case TEXT_MENU_APPLY:
1391 rb->lcd_set_foreground( rp_colors[ drawcolor ] );
1390 buffer_putsxyofs( save_buffer, COLS, ROWS, x, y, 0, 1392 buffer_putsxyofs( save_buffer, COLS, ROWS, x, y, 0,
1391 buffer.text.text ); 1393 buffer.text.text );
1392 case TEXT_MENU_CANCEL: 1394 case TEXT_MENU_CANCEL: