mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
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:
parent
70ede8ec98
commit
01aa05e69a
3 changed files with 9 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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];
|
||||
|
|
Binary file not shown.
Loading…
Reference in a new issue