darwin: Fix uiTable checkbox value not calling SetCellValue().

The SetCellValue() when clicking a checkbox within a uiTable is
never called. The UI happiliy updates suggesting the value has
been set - which is not actually the case.

The checkbox not redrawing with the actual check box value from
the model is another related issue, see #507.
This commit is contained in:
Angelo Haller 2020-08-27 17:22:06 -05:00
parent 34d1d0ac48
commit 4b47cb2c5f
1 changed files with 2 additions and 0 deletions

View File

@ -181,6 +181,8 @@ struct textColumnCreateParams {
[self->cb setTransparent:NO];
uiDarwinSetControlFont(self->cb, NSRegularControlSize);
[self->cb setTranslatesAutoresizingMaskIntoConstraints:NO];
[self->cb setTarget:self];
[self->cb setAction:@selector(uiprivOnCheckboxAction:)];
[self addSubview:self->cb];
if (self->tf != nil) {