Skip to content

Commit

Permalink
Fix view frame in portrait when starting iOS app in landscape
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHills committed Sep 15, 2020
1 parent e475499 commit 9df2b01
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
- **Breaking:** `primary_monitor` now returns `Option<MonitorHandle>`.
- On macOS, updated core-* dependencies and cocoa.
- Bump `parking_lot` to 0.11
- On iOS, fixed starting the app in landscape where the view still had portrait dimensions.

# 0.22.2 (2020-05-16)

Expand Down
2 changes: 1 addition & 1 deletion src/platform_impl/ios/ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub struct CGPoint {
}

#[repr(C)]
#[derive(Debug, Clone)]
#[derive(Debug, Clone, PartialEq)]
pub struct CGSize {
pub width: CGFloat,
pub height: CGFloat,
Expand Down
13 changes: 11 additions & 2 deletions src/platform_impl/ios/view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,17 +123,26 @@ unsafe fn get_view_class(root_view_class: &'static Class) -> &'static Class {

let window: id = msg_send![object, window];
assert!(!window.is_null());
let bounds: CGRect = msg_send![window, bounds];
let window_bounds: CGRect = msg_send![window, bounds];
let screen: id = msg_send![window, screen];
let screen_space: id = msg_send![screen, coordinateSpace];
let screen_frame: CGRect =
msg_send![object, convertRect:bounds toCoordinateSpace:screen_space];
msg_send![object, convertRect:window_bounds.clone() toCoordinateSpace:screen_space];
let scale_factor: CGFloat = msg_send![screen, scale];
let size = crate::dpi::LogicalSize {
width: screen_frame.size.width as f64,
height: screen_frame.size.height as f64,
}
.to_physical(scale_factor.into());

// If the app is started in landscape, the view frame and window bounds can be mismatched.
// The view frame will be in portrait and the window bounds in landscape. So apply the
// window bounds to the view frame to make it consistent.
let view_frame: CGRect = msg_send![object, frame];
if view_frame.size != window_bounds.size {
let () = msg_send![object, setFrame:window_bounds];
}

app_state::handle_nonuser_event(EventWrapper::StaticEvent(Event::WindowEvent {
window_id: RootWindowId(window.into()),
event: WindowEvent::Resized(size),
Expand Down

0 comments on commit 9df2b01

Please sign in to comment.