* GormCore/GormViewEditor.m: -handleNotification: touch document

when text editing is completed.
	Fixes for bug #28643.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@36289 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2013-03-06 06:45:57 +00:00
parent d92bf3d1e1
commit 62eacb0443
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2013-03-06 01:44-EST Gregory John Casamento <greg.casamento@gmail.com>
* GormCore/GormViewEditor.m: -handleNotification: touch document
when text editing is completed.
Fixes for bug #28643.
2013-03-06 00:05-EST Gregory John Casamento <greg.casamento@gmail.com>
* GormCore/GormDocument.m: Touch document when aligning views in
@ -7,7 +13,7 @@
* Palettes/4Data/GormDateFormatterAttributesInspector.m
* Palettes/4Data/GormNumberFormatterAttributesInspector.m:
-ok: touch document when changing formatter.
Fixes forbug #28643.
Fixes for bug #28643.
2013-03-05 20:23-EST Gregory John Casamento <greg.casamento@gmail.com>

View file

@ -1563,6 +1563,7 @@ static BOOL done_editing;
if ([name isEqual: NSControlTextDidEndEditingNotification] == YES)
{
done_editing = YES;
[[self document] touch];
}
}