diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-24 15:27:58 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-24 15:27:58 -0400 |
| commit | b2eb341fb7d5b588345ca9c1e857d299e16e5a45 (patch) | |
| tree | 4c83136344b9db5f84f2dc1f1999092b381e7a60 /redo/basicctrls_darwin.m | |
| parent | 811ec66d811181aa353680b6fdca24f90db0545b (diff) | |
Added beep to TextFIeld.Invalid() on Mac OS X.
Diffstat (limited to 'redo/basicctrls_darwin.m')
| -rw-r--r-- | redo/basicctrls_darwin.m | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/redo/basicctrls_darwin.m b/redo/basicctrls_darwin.m index 8ca447f..1f4b570 100644 --- a/redo/basicctrls_darwin.m +++ b/redo/basicctrls_darwin.m @@ -205,6 +205,9 @@ id textfieldOpenInvalidPopover(id textfield, char *reason) // NSMaxYEdge is the bottom edge when looking (maximum edge in window coordinates) [popover showRelativeToRect:NSZeroRect ofView:toNSView(textfield) preferredEdge:NSMaxYEdge]; + // and beep + NSBeep(); + return (id) popover; } |
