Minor corrections.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@19341 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-05-15 20:41:24 +00:00
parent 70ede8ec98
commit 01aa05e69a
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2004-05-15 16:19 Gregory John Casamento <greg_casamento@yahoo.com>
* GormDocument.m: [GormDocument init] changed initialization
of scrollviews to allow horizontal scroller to be used.
* GormImageInspector.gorm: resized some of the fields which
were too short.
2004-05-15 12:42 Gregory John Casamento <greg_casamento@yahoo.com>
* GormFunctions.[hm]: added function to get all system sounds.

View file

@ -1799,7 +1799,7 @@ static NSImage *classesImage = nil;
mainRect.origin = NSMakePoint(0,0);
imagesScrollView = [[NSScrollView alloc] initWithFrame: scrollRect];
[imagesScrollView setHasVerticalScroller: YES];
[imagesScrollView setHasHorizontalScroller: NO];
[imagesScrollView setHasHorizontalScroller: YES];
[imagesScrollView setAutoresizingMask:
NSViewHeightSizable|NSViewWidthSizable];
[imagesScrollView setBorderType: NSBezelBorder];
@ -1815,7 +1815,7 @@ static NSImage *classesImage = nil;
mainRect.origin = NSMakePoint(0,0);
soundsScrollView = [[NSScrollView alloc] initWithFrame: scrollRect];
[soundsScrollView setHasVerticalScroller: YES];
[soundsScrollView setHasHorizontalScroller: NO];
[soundsScrollView setHasHorizontalScroller: YES];
[soundsScrollView setAutoresizingMask:
NSViewHeightSizable|NSViewWidthSizable];
[soundsScrollView setBorderType: NSBezelBorder];