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:
parent
34d1d0ac48
commit
4b47cb2c5f
|
@ -181,6 +181,8 @@ struct textColumnCreateParams {
|
||||||
[self->cb setTransparent:NO];
|
[self->cb setTransparent:NO];
|
||||||
uiDarwinSetControlFont(self->cb, NSRegularControlSize);
|
uiDarwinSetControlFont(self->cb, NSRegularControlSize);
|
||||||
[self->cb setTranslatesAutoresizingMaskIntoConstraints:NO];
|
[self->cb setTranslatesAutoresizingMaskIntoConstraints:NO];
|
||||||
|
[self->cb setTarget:self];
|
||||||
|
[self->cb setAction:@selector(uiprivOnCheckboxAction:)];
|
||||||
[self addSubview:self->cb];
|
[self addSubview:self->cb];
|
||||||
|
|
||||||
if (self->tf != nil) {
|
if (self->tf != nil) {
|
||||||
|
|
Loading…
Reference in New Issue