diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-24 01:14:17 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-24 01:14:17 -0400 |
| commit | 811ec66d811181aa353680b6fdca24f90db0545b (patch) | |
| tree | 30530971416f24d94f2a9318dc04f6c2bcf2ca68 | |
| parent | 073ec1d8b3f1f51c79c60bb6c015596f0c7a017b (diff) | |
Added error beep to GTK+ TextField.Invalid().
| -rw-r--r-- | redo/textfield_unix.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/textfield_unix.go b/redo/textfield_unix.go index cef2765..b06da02 100644 --- a/redo/textfield_unix.go +++ b/redo/textfield_unix.go @@ -71,7 +71,7 @@ func (t *textfield) Invalid(reason string) { creason := togstr(reason) defer freegstr(creason) C.gtk_entry_set_icon_tooltip_text(t.entry, C.GTK_ENTRY_ICON_SECONDARY, creason) - // TODO beep + C.gtk_widget_error_bell(t._widget) } //export textfieldChanged |
