mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-02 12:30: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
9af6ce8bd8
commit
87b0230203
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
|
* Source/NSWindow.m ([-keyDown:]): Use NSCommandKeyMask for key
|
||||||
equivalents.
|
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>
|
Wed Oct 13 1999 Nicola Pero <n.pero@mi.flashnet.it>
|
||||||
|
|
||||||
You should now be able to use key equivalents for buttons.
|
You should now be able to use key equivalents for buttons.
|
||||||
|
|
|
@ -358,7 +358,8 @@ static int mouseDownFlags = 0;
|
||||||
mode = aMode;
|
mode = aMode;
|
||||||
[self setFrame: frameRect];
|
[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);
|
intercell = NSMakeSize(1, 1);
|
||||||
[self setBackgroundColor: [NSColor controlBackgroundColor]];
|
[self setBackgroundColor: [NSColor controlBackgroundColor]];
|
||||||
[self setDrawsBackground: YES];
|
[self setDrawsBackground: YES];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue