From aebc25e676baf2d05450b16efb9480bff596f1dc Mon Sep 17 00:00:00 2001 From: Nicola Pero Date: Mon, 24 Jun 2002 12:16:07 +0000 Subject: [PATCH] Removed check for height of line being 0, which should not be needed git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@13959 72102866-910b-0410-8b05-ffd578937521 --- Source/NSTextView.m | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Source/NSTextView.m b/Source/NSTextView.m index 917e47601..fb3fcf0dd 100644 --- a/Source/NSTextView.m +++ b/Source/NSTextView.m @@ -1580,13 +1580,7 @@ static NSNotificationCenter *nc; rect.size.width = 1; - if (rect.size.height == 0) - { - rect.size.height = 12; - } - _insertionPointRect = rect; - /* Remember horizontal position of insertion point */ _originalInsertPoint = _insertionPointRect.origin.x;