summaryrefslogtreecommitdiffstats
path: root/ColumnsPanel.c
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2011-12-14 23:30:16 +0000
committerHisham Muhammad <hisham@gobolinux.org>2011-12-14 23:30:16 +0000
commit59d5eecdfdc7101755443239ee94b21ea5ad4474 (patch)
tree3b321857c39bac7084e6a50e01298dea780af433 /ColumnsPanel.c
parent9c44f589d2aab70309d11bc5a0050c145452fb4f (diff)
fix pagedown in some panels
Diffstat (limited to 'ColumnsPanel.c')
-rw-r--r--ColumnsPanel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ColumnsPanel.c b/ColumnsPanel.c
index 5c630749..e1a75587 100644
--- a/ColumnsPanel.c
+++ b/ColumnsPanel.c
@@ -62,7 +62,8 @@ static HandlerResult ColumnsPanel_eventHandler(Panel* super, int ch) {
}
default:
{
- result = Panel_selectByTyping(super, ch);
+ if (isalpha(ch))
+ result = Panel_selectByTyping(super, ch);
if (result == BREAK_LOOP)
result = IGNORED;
break;

© 2014-2024 Faster IT GmbH | imprint | privacy policy