summaryrefslogtreecommitdiff
path: root/apps/action.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/action.c')
-rw-r--r--apps/action.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/action.c b/apps/action.c
index 7cde1b14ba..b1dd98df08 100644
--- a/apps/action.c
+++ b/apps/action.c
@@ -172,7 +172,7 @@ static int get_action_worker(int context, int timeout,
172 { 172 {
173 last_button = BUTTON_NONE; 173 last_button = BUTTON_NONE;
174 keys_locked = false; 174 keys_locked = false;
175 gui_syncsplash(HZ/2, str(LANG_KEYLOCK_OFF)); 175 splash(HZ/2, str(LANG_KEYLOCK_OFF));
176 return ACTION_REDRAW; 176 return ACTION_REDRAW;
177 } 177 }
178 else 178 else
@@ -181,7 +181,7 @@ static int get_action_worker(int context, int timeout,
181#endif 181#endif
182 { 182 {
183 if ((button & BUTTON_REL)) 183 if ((button & BUTTON_REL))
184 gui_syncsplash(HZ/2, str(LANG_KEYLOCK_ON)); 184 splash(HZ/2, str(LANG_KEYLOCK_ON));
185 return ACTION_REDRAW; 185 return ACTION_REDRAW;
186 } 186 }
187 } 187 }
@@ -220,7 +220,7 @@ static int get_action_worker(int context, int timeout,
220 { 220 {
221 unlock_combo = button; 221 unlock_combo = button;
222 keys_locked = true; 222 keys_locked = true;
223 gui_syncsplash(HZ/2, str(LANG_KEYLOCK_ON)); 223 splash(HZ/2, str(LANG_KEYLOCK_ON));
224 224
225 button_clear_queue(); 225 button_clear_queue();
226 return ACTION_REDRAW; 226 return ACTION_REDRAW;