On macOS, fix tabGroup misuse
The property is marked as `Weak`, however we used strong `Id`. Links: https://github.com/alacritty/alacritty/issues/7249
This commit is contained in:
parent
6a041f84ba
commit
c346fb7e61
4 changed files with 19 additions and 10 deletions
|
|
@ -218,7 +218,7 @@ extern_methods!(
|
|||
pub(crate) fn tabbingIdentifier(&self) -> Id<NSString>;
|
||||
|
||||
#[method_id(tabGroup)]
|
||||
pub(crate) fn tabGroup(&self) -> Id<NSWindowTabGroup>;
|
||||
pub(crate) fn tabGroup(&self) -> Option<Id<NSWindowTabGroup>>;
|
||||
|
||||
#[method(isDocumentEdited)]
|
||||
pub(crate) fn isDocumentEdited(&self) -> bool;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue