diff options
| author | Pietro Gagliardi <[email protected]> | 2014-03-23 20:54:11 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-03-23 20:54:11 -0400 |
| commit | a41f58286646057d1c022e260662944efd7b85ce (patch) | |
| tree | d675fabc592c366821ad143439fcc5aece4d7a48 /gtkcalls_unix.go | |
| parent | 0cc13633cb99b59a605296591c81732c11ba06f8 (diff) | |
Added Area resizing. Everything mostly works, but not making things smaller...
Diffstat (limited to 'gtkcalls_unix.go')
| -rw-r--r-- | gtkcalls_unix.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gtkcalls_unix.go b/gtkcalls_unix.go index c7b409a..3591e65 100644 --- a/gtkcalls_unix.go +++ b/gtkcalls_unix.go @@ -217,3 +217,7 @@ func gtk_progress_bar_set_fraction(w *gtkWidget, percent int) { func gtk_progress_bar_pulse(w *gtkWidget) { C.gtk_progress_bar_pulse(togtkprogressbar(w)) } + +func gtk_widget_queue_draw(widget *gtkWidget) { + C.gtk_widget_queue_draw(togtkwidget(widget)) +} |
