mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Minor tidyup
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@9016 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0f1bd6b5bc
commit
2f6ba566c3
4 changed files with 9 additions and 6 deletions
|
@ -1,3 +1,7 @@
|
|||
2001-02-07 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* GormInspectorsManager.m: Resize a few buttons to fit text neatly.
|
||||
|
||||
2001-02-06 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Palettes/2Control/main.m: Added patch to tidy up and add more
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
@c %**start of header
|
||||
@settitle Guide to the Gorm application
|
||||
@setfilename gstep_guile.info
|
||||
@setfilename Gorm.info
|
||||
@c %**end of header
|
||||
@defcodeindex cl
|
||||
@defcodeindex pr
|
||||
|
@ -59,7 +59,7 @@ Free Software Foundation instead of in the original English.
|
|||
@title Guide to the
|
||||
@title Gorm application
|
||||
@sp 3
|
||||
@c @subtitle last updated January, 2000
|
||||
@c @subtitle last updated February, 2001
|
||||
@subtitle Version @value{GORM-VERSION}
|
||||
@subtitle (for use with @samp{gstep-base} version @value{GNUSTEP-VERSION})
|
||||
@author Richard Frith-Macdonald <richard@@brainstorm.co.uk>
|
||||
|
@ -134,7 +134,6 @@ Gorm as part of the GNUstep project.
|
|||
|
||||
@itemize @bullet
|
||||
|
||||
@item Add support for menus
|
||||
@item Add more inspectors
|
||||
@item Add more editors
|
||||
@item Add support for matrix
|
||||
|
|
|
@ -829,7 +829,7 @@ selectCellWithString: (NSString*)title
|
|||
[contents addSubview: split];
|
||||
RELEASE(split);
|
||||
|
||||
okButton = [[NSButton alloc] initWithFrame: NSMakeRect(0,0,60,20)];
|
||||
okButton = [[NSButton alloc] initWithFrame: NSMakeRect(0,0,70,20)];
|
||||
[okButton setAutoresizingMask: NSViewMaxYMargin | NSViewMinXMargin];
|
||||
[okButton setAction: @selector(ok:)];
|
||||
[okButton setTarget: self];
|
||||
|
|
|
@ -131,10 +131,10 @@ selectCellWithString: (NSString*)title
|
|||
RELEASE(browser);
|
||||
|
||||
rect = windowRect;
|
||||
rect.size.width -= 120;
|
||||
rect.size.width -= 40;
|
||||
rect.size.height = 22;
|
||||
rect.origin.y = 30;
|
||||
rect.origin.x = 60;
|
||||
rect.origin.x = 20;
|
||||
label = [[NSButton alloc] initWithFrame: rect];
|
||||
[label setBordered: NO];
|
||||
[label setTitle: @"No Type"];
|
||||
|
|
Loading…
Reference in a new issue