mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
* Palettes/2Controls/GormMatrixAttributesInspector.m (ok:): fixed "Match Prototype" action - make cells as copy of prototype, select first cell.
This commit is contained in:
parent
da8e911f0b
commit
e563abf1b3
1 changed files with 3 additions and 1 deletions
|
@ -129,9 +129,11 @@ NSUInteger colsStepperValue;
|
|||
{
|
||||
for (int r = 0; r < [object numberOfRows]; r++)
|
||||
{
|
||||
[object putCell: [object prototype] atRow:r column:c];
|
||||
[object putCell: [[object prototype] copy] atRow:r column:c];
|
||||
}
|
||||
}
|
||||
[object deselectAllCells];
|
||||
[object selectCellAtRow: 0 column: 0];
|
||||
}
|
||||
else if (sender == selRectSwitch)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue