summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/text_editor.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugins/text_editor.c b/apps/plugins/text_editor.c
index 216fbc0117..8552590efa 100644
--- a/apps/plugins/text_editor.c
+++ b/apps/plugins/text_editor.c
@@ -424,6 +424,9 @@ enum plugin_status plugin_start(const void* parameter)
424 rb->set_color(rb->screens[SCREEN_MAIN], name, &color, -1); 424 rb->set_color(rb->screens[SCREEN_MAIN], name, &color, -1);
425 temp_changed = (value == NULL) || (color != old_color); 425 temp_changed = (value == NULL) || (color != old_color);
426 break; 426 break;
427 default:
428 /* Should never happend but makes compiler happy */
429 temp_changed = false;
427 } 430 }
428 431
429 if (temp_changed) 432 if (temp_changed)