mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
Added core file support in debugapp. Changed default cell size in NSMatrix so it's more automatic. Fixed NSURL scheme typo.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5015 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c676de69e0
commit
4fffbf330e
2 changed files with 7 additions and 1 deletions
|
@ -9,6 +9,11 @@ Tue Oct 14 1999 Nicola Pero <n.pero@mi.flashnet.it>
|
|||
* Source/NSWindow.m ([-keyDown:]): Use NSCommandKeyMask for key
|
||||
equivalents.
|
||||
|
||||
Tue Oct 14 1999 Lyndon Tremblay <humasect@coolmail.com>
|
||||
|
||||
* Source/NSMatrix.m: ([-initWithFrame:]): Changed default cellSize
|
||||
to be convient and match NSMatrix's frame.
|
||||
|
||||
Wed Oct 13 1999 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
You should now be able to use key equivalents for buttons.
|
||||
|
|
|
@ -358,7 +358,8 @@ static int mouseDownFlags = 0;
|
|||
mode = aMode;
|
||||
[self setFrame: frameRect];
|
||||
|
||||
cellSize = NSMakeSize(DEFAULT_CELL_WIDTH, DEFAULT_CELL_HEIGHT);
|
||||
/* cellSize = NSMakeSize(DEFAULT_CELL_WIDTH, DEFAULT_CELL_HEIGHT); */
|
||||
cellSize = NSMakeSize(frameRect.size.width/numCols, frameRect.size.height/numRows);
|
||||
intercell = NSMakeSize(1, 1);
|
||||
[self setBackgroundColor: [NSColor controlBackgroundColor]];
|
||||
[self setDrawsBackground: YES];
|
||||
|
|
Loading…
Reference in a new issue