summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2009-11-29 12:23:42 +0100
committerAlexis211 <alexis211@gmail.com>2009-11-29 12:23:42 +0100
commitd3e4ef59cbb45f02e07fe17fb7c58cba3c737900 (patch)
tree125a899a376b41ee2c0524244a897db606c5493f /Source
parentc268aeb9779b6e0562a2f0ab7668cffd62a27943 (diff)
downloadMelon-d3e4ef59cbb45f02e07fe17fb7c58cba3c737900.tar.gz
Melon-d3e4ef59cbb45f02e07fe17fb7c58cba3c737900.zip
Minor edit
Diffstat (limited to 'Source')
-rw-r--r--Source/Kernel/VTManager/ScrollableVT.class.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Kernel/VTManager/ScrollableVT.class.cpp b/Source/Kernel/VTManager/ScrollableVT.class.cpp
index 264c3a4..5a7de62 100644
--- a/Source/Kernel/VTManager/ScrollableVT.class.cpp
+++ b/Source/Kernel/VTManager/ScrollableVT.class.cpp
@@ -80,6 +80,8 @@ void ScrollableVT::keyPress(keypress_t kp) {
nlup = m_linesup + 1;
} else if (kp.command == KBDC_DOWN) {
nlup = m_linesup - 1;
+ } else if (kp.command == KBDC_END) {
+ nlup = 0;
} else {
VirtualTerminal::keyPress(kp);
}