diff options
| -rw-r--r-- | apps/action.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/action.c b/apps/action.c index f65ef39..fc10c92 100644 --- a/apps/action.c +++ b/apps/action.c @@ -96,7 +96,8 @@ static int button_flip_horizontally(int context, int button) int newbutton; if (!(lang_is_rtl() && ((context == CONTEXT_STD) || - (context & CONTEXT_TREE) || (context & CONTEXT_MAINMENU)))) + (context == CONTEXT_TREE) || (context == CONTEXT_LIST) || + (context == CONTEXT_MAINMENU)))) { return button; } |