[ENHANCE] Enhance the hide lines feature.

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository@32 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
donho 2007-09-14 00:10:30 +00:00
parent e5d3d370b8
commit 81e7b66ec5
2 changed files with 5 additions and 1 deletions

View File

@ -798,6 +798,8 @@ private:
{
if (_pEditView->execute(SCI_GETLINEVISIBLE, i))
break;
hideLinesMarkDelete(i, MARK_HIDELINESBEGIN);
hideLinesMarkDelete(i, MARK_HIDELINESEND);
}
start = i;
}
@ -810,6 +812,8 @@ private:
{
if (_pEditView->execute(SCI_GETLINEVISIBLE, i))
break;
hideLinesMarkDelete(i, MARK_HIDELINESBEGIN);
hideLinesMarkDelete(i, MARK_HIDELINESEND);
}
end = i;
}