summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/checkbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib/checkbox.c')
-rw-r--r--apps/plugins/lib/checkbox.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/plugins/lib/checkbox.c b/apps/plugins/lib/checkbox.c
index 221137b328..80ede83e8a 100644
--- a/apps/plugins/lib/checkbox.c
+++ b/apps/plugins/lib/checkbox.c
@@ -22,8 +22,6 @@
22#include "plugin.h" 22#include "plugin.h"
23#include "checkbox.h" 23#include "checkbox.h"
24 24
25#ifdef HAVE_LCD_BITMAP
26
27/* 25/*
28 * Print a checkbox 26 * Print a checkbox
29 */ 27 */
@@ -42,5 +40,3 @@ void checkbox(int x, int y, int width, int height, bool checked)
42 rb->lcd_drawline(x + 2, y + height - 2 - 1, x + width - 2 - 1, y + 2); 40 rb->lcd_drawline(x + 2, y + height - 2 - 1, x + width - 2 - 1, y + 2);
43 } 41 }
44} 42}
45
46#endif