Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
htop
Commits
59d5eecd
Commit
59d5eecd
authored
Dec 14, 2011
by
Hisham Muhammad
Browse files
fix pagedown in some panels
parent
9c44f589
Changes
2
Hide whitespace changes
Inline
Side-by-side
AvailableColumnsPanel.c
View file @
59d5eecd
...
...
@@ -48,7 +48,8 @@ static HandlerResult AvailableColumnsPanel_eventHandler(Panel* super, int ch) {
}
default:
{
result
=
Panel_selectByTyping
(
super
,
ch
);
if
(
isalpha
(
ch
))
result
=
Panel_selectByTyping
(
super
,
ch
);
break
;
}
}
...
...
ColumnsPanel.c
View file @
59d5eecd
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment