* Palettes/2Controls/GormMatrixAttributesInspector.m (ok:): fixed "Match Prototype" action - make cells as copy of prototype, select first cell.

This commit is contained in:
Sergii Stoian 2020-01-05 03:53:41 +02:00
parent da8e911f0b
commit e563abf1b3

View file

@ -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)
{