linux: Indicate when the window is focused (#14266)
fixes #14202 Release Notes: - Added a representation of the current focus state to Zed's window style ([#14202](https://github.com/zed-industries/zed/issues/14202))
This commit is contained in:
parent
11178eacc7
commit
fe3fe945a9
15 changed files with 62 additions and 3 deletions
|
@ -797,7 +797,7 @@ impl Platform for MacPlatform {
|
|||
CursorStyle::OpenHand => msg_send![class!(NSCursor), openHandCursor],
|
||||
CursorStyle::PointingHand => msg_send![class!(NSCursor), pointingHandCursor],
|
||||
CursorStyle::ResizeLeftRight => msg_send![class!(NSCursor), resizeLeftRightCursor],
|
||||
CursorStyle::ResizeUpDown => msg_send![class!(NSCursor), verticalResizeCursor],
|
||||
CursorStyle::ResizeUpDown => msg_send![class!(NSCursor), resizeUpDownCursor],
|
||||
CursorStyle::ResizeLeft => msg_send![class!(NSCursor), resizeLeftCursor],
|
||||
CursorStyle::ResizeRight => msg_send![class!(NSCursor), resizeRightCursor],
|
||||
CursorStyle::ResizeColumn => msg_send![class!(NSCursor), resizeLeftRightCursor],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue