fCheckMouseTracking was never initialized to false, causing spurious selections when opening a new tab. Fixes bug #2910

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28955 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini 2009-01-19 16:01:43 +00:00
parent 321bba933d
commit ee9b4396bf

View File

@ -258,6 +258,7 @@ TermView::_InitObject(int32 argc, const char** argv)
fSelEnd = TermPos(-1, -1);
fMouseTracking = false;
fIMflag = false;
fCheckMouseTracking = false;
fTextBuffer = new(std::nothrow) TerminalBuffer;
if (fTextBuffer == NULL)