From 2fd41f637c69fc34fb14ad313b75bf5c3afa18c0 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Fri, 20 Jun 2008 12:38:52 +0000 Subject: [PATCH] Also scroll to the cursor when pasting something. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26046 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/terminal/TermView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/apps/terminal/TermView.cpp b/src/apps/terminal/TermView.cpp index dc18181969..42e9fd6912 100644 --- a/src/apps/terminal/TermView.cpp +++ b/src/apps/terminal/TermView.cpp @@ -690,6 +690,8 @@ TermView::Paste(BClipboard *clipboard) } clipboard->Unlock(); + + _ScrollTo(0, true); } }