mirror of
https://github.com/mpv-player/mpv
synced 2025-04-04 23:40:47 +00:00
mac: add support for the focused property
This commit is contained in:
parent
18a35f17e2
commit
82eda2e5f8
@ -592,6 +592,10 @@ class Common: NSObject {
|
||||
SWIFT_TARRAY_STRING_APPEND(nil, &array, &count, nil)
|
||||
dnames.pointee = array
|
||||
return VO_TRUE
|
||||
case VOCTRL_GET_FOCUSED:
|
||||
let focus = data.assumingMemoryBound(to: CBool.self)
|
||||
focus.pointee = NSApp.isActive
|
||||
return VO_TRUE
|
||||
case VOCTRL_UPDATE_WINDOW_TITLE:
|
||||
let titleData = data.assumingMemoryBound(to: Int8.self)
|
||||
DispatchQueue.main.async {
|
||||
|
Loading…
Reference in New Issue
Block a user