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
0b0bd25e
Commit
0b0bd25e
authored
Jul 31, 2010
by
Hisham Muhammad
Browse files
home and end keys in trace screens
parent
655c29bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
TraceScreen.c
View file @
0b0bd25e
...
...
@@ -142,6 +142,12 @@ void TraceScreen_run(TraceScreen* this) {
FunctionBar_setLabel
(
this
->
bar
,
KEY_F
(
5
),
this
->
tracing
?
"Stop Tracing "
:
"Resume Tracing "
);
TraceScreen_draw
(
this
);
break
;
case
KEY_HOME
:
Panel_setSelected
(
panel
,
0
);
break
;
case
KEY_END
:
Panel_setSelected
(
panel
,
Panel_size
(
panel
)
-
1
);
break
;
case
'f'
:
case
KEY_F
(
4
):
follow
=
!
follow
;
...
...
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