Use frame instead of visibleRect (#3043)

This commit is contained in:
Mads Marquart 2023-08-24 22:52:11 +02:00 committed by GitHub
parent 9979441c82
commit 68ef9f707e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View file

@ -8,6 +8,8 @@ And please only add new entries to the top of this list, right below the `# Unre
# Unreleased
- Fix window size sometimes being invalid when resizing on macOS.
# 0.29.1-beta
- **Breaking:** Bump `ndk` version to `0.8.0-beta.0`, ndk-sys to `v0.5.0-beta.0`, `android-activity` to `0.5.0-beta.1`.

View file

@ -9,4 +9,5 @@ disallowed-methods = [
{ path = "web_sys::Element::request_fullscreen", reason = "Doesn't account for compatibility with Safari" },
{ path = "web_sys::Document::exit_fullscreen", reason = "Doesn't account for compatibility with Safari" },
{ path = "web_sys::Document::fullscreen_element", reason = "Doesn't account for compatibility with Safari" },
{ path = "icrate::AppKit::NSView::visibleRect", reason = "We expose a render target to the user, and visibility is not really relevant to that (and can break if you don't use the rectangle position as well). Use `frame` instead." },
]

View file

@ -44,9 +44,6 @@ extern_methods!(
// _mtm: MainThreadMarker,
) -> Option<Id<NSTextInputContext>>;
#[method(visibleRect)]
pub fn visibleRect(&self) -> NSRect;
#[method(hasMarkedText)]
pub fn hasMarkedText(&self) -> bool;

View file

@ -212,7 +212,7 @@ declare_class!(
self.removeTrackingRect(tracking_rect);
}
let rect = self.visibleRect();
let rect = self.frame();
let tracking_rect = self.add_tracking_rect(rect, false);
self.state.tracking_rect.set(Some(tracking_rect));
}
@ -224,7 +224,7 @@ declare_class!(
self.removeTrackingRect(tracking_rect);
}
let rect = self.visibleRect();
let rect = self.frame();
let tracking_rect = self.add_tracking_rect(rect, false);
self.state.tracking_rect.set(Some(tracking_rect));