summaryrefslogtreecommitdiff
path: root/apps/plugins/test_grey.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/test_grey.c')
-rw-r--r--apps/plugins/test_grey.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/test_grey.c b/apps/plugins/test_grey.c
index bf6d1755af..efceeff2c3 100644
--- a/apps/plugins/test_grey.c
+++ b/apps/plugins/test_grey.c
@@ -184,7 +184,7 @@ enum plugin_status plugin_start(const void* parameter)
184 for (i = 0; i <= STEPS; i++) 184 for (i = 0; i <= STEPS; i++)
185 input_levels[i] = lcd_levels[i] = (255 * i + (STEPS/2)) / STEPS; 185 input_levels[i] = lcd_levels[i] = (255 * i + (STEPS/2)) / STEPS;
186 186
187 backlight_force_on(); /* backlight control in lib/helper.c */ 187 backlight_ignore_timeout();
188 188
189 grey_set_background(0); /* set background to black */ 189 grey_set_background(0); /* set background to black */
190 grey_clear_display(); 190 grey_clear_display();
@@ -279,6 +279,6 @@ enum plugin_status plugin_start(const void* parameter)
279 } 279 }
280 280
281 grey_release(); 281 grey_release();
282 backlight_use_settings(); /* backlight control in lib/helper.c */ 282 backlight_use_settings();
283 return PLUGIN_OK; 283 return PLUGIN_OK;
284} 284}