From 89b262103f85735c6c824c06c9a424e9ce25bfd8 Mon Sep 17 00:00:00 2001 From: daboe01 Date: Sat, 5 Jul 2025 16:28:16 +0200 Subject: [PATCH] Revert "fixed: _view was assigned bypassing the accessors" This reverts commit cfcf8bc567d596b0e05d271391751adf4916d189. --- AppKit/CPViewController.j | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppKit/CPViewController.j b/AppKit/CPViewController.j index 1e4f66728..6d25ae590 100644 --- a/AppKit/CPViewController.j +++ b/AppKit/CPViewController.j @@ -174,7 +174,7 @@ var CPViewControllerCachedCibs; [cib instantiateCibWithExternalNameTable:_cibExternalNameTable]; } else - [self setView:[CPView new]]; + _view = [CPView new]; } /*! @@ -233,7 +233,7 @@ var CPViewControllerCachedCibs; } else { - [self setView:[CPView new]]; + _view = [CPView new]; [self _viewDidLoadWithCompletionHandler:aHandler]; } }