diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/nsterm.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nsterm.m b/src/nsterm.m index 6ba867d27c0..6c285f0abb7 100644 --- a/src/nsterm.m +++ b/src/nsterm.m | |||
| @@ -1949,7 +1949,7 @@ x_set_parent_frame (struct frame *f, Lisp_Object new_value, Lisp_Object old_valu | |||
| 1949 | [[child parentWindow] removeChildWindow:child]; | 1949 | [[child parentWindow] removeChildWindow:child]; |
| 1950 | #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= 101000 | 1950 | #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= 101000 |
| 1951 | #if MAC_OS_X_VERSION_MIN_REQUIRED < 101000 | 1951 | #if MAC_OS_X_VERSION_MIN_REQUIRED < 101000 |
| 1952 | if ([child respondsToSelector:@selector(setAccessibilitySubrole:)] | 1952 | if ([child respondsToSelector:@selector(setAccessibilitySubrole:)]) |
| 1953 | #endif | 1953 | #endif |
| 1954 | [child setAccessibilitySubrole:NSAccessibilityStandardWindowSubrole]; | 1954 | [child setAccessibilitySubrole:NSAccessibilityStandardWindowSubrole]; |
| 1955 | #endif | 1955 | #endif |
| @@ -1963,7 +1963,7 @@ x_set_parent_frame (struct frame *f, Lisp_Object new_value, Lisp_Object old_valu | |||
| 1963 | ordered: NSWindowAbove]; | 1963 | ordered: NSWindowAbove]; |
| 1964 | #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= 101000 | 1964 | #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= 101000 |
| 1965 | #if MAC_OS_X_VERSION_MIN_REQUIRED < 101000 | 1965 | #if MAC_OS_X_VERSION_MIN_REQUIRED < 101000 |
| 1966 | if ([child respondsToSelector:@selector(setAccessibilitySubrole:)] | 1966 | if ([child respondsToSelector:@selector(setAccessibilitySubrole:)]) |
| 1967 | #endif | 1967 | #endif |
| 1968 | [child setAccessibilitySubrole:NSAccessibilityFloatingWindowSubrole]; | 1968 | [child setAccessibilitySubrole:NSAccessibilityFloatingWindowSubrole]; |
| 1969 | #endif | 1969 | #endif |