mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-04 07:51:29 +00:00
Use a much larger size for the field editor.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16866 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5d10d4ccbb
commit
3df30455f5
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2003-06-04 23:02 Alexander Malmberg <alexander@malmberg.org>
|
||||||
|
|
||||||
|
* Source/NSCell.m (-_setupTextWithFrame:inView:editor:): Use a (much)
|
||||||
|
larger maximum size for the field editor.
|
||||||
|
|
||||||
2003-05-26 Adam Fedor <fedor@gnu.org>
|
2003-05-26 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
* Source/NSApplication.m (gsapp_user_bundles): New function
|
* Source/NSApplication.m (gsapp_user_bundles): New function
|
||||||
|
|
|
@ -1752,7 +1752,7 @@ static NSColor *shadowCol;
|
||||||
editor: (NSText*)textObject
|
editor: (NSText*)textObject
|
||||||
{
|
{
|
||||||
NSRect titleRect = [self titleRectForBounds: aRect];
|
NSRect titleRect = [self titleRectForBounds: aRect];
|
||||||
NSSize maxSize = NSMakeSize(3000, titleRect.size.height);
|
NSSize maxSize = NSMakeSize(1e8, titleRect.size.height);
|
||||||
NSClipView *cv = [[NSClipView alloc]
|
NSClipView *cv = [[NSClipView alloc]
|
||||||
initWithFrame: titleRect];
|
initWithFrame: titleRect];
|
||||||
NSTextContainer *ct = [(NSTextView*)textObject textContainer];
|
NSTextContainer *ct = [(NSTextView*)textObject textContainer];
|
||||||
|
|
Loading…
Reference in a new issue