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 /sysdata.go | |
| parent | 0cc13633cb99b59a605296591c81732c11ba06f8 (diff) | |
Added Area resizing. Everything mostly works, but not making things smaller...
Diffstat (limited to 'sysdata.go')
| -rw-r--r-- | sysdata.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -76,6 +76,9 @@ func (c *cSysData) setProgress(int) { func (c *cSysData) len() int { panic(runtime.GOOS + " sysData does not define len()") } +func (c *cSysData) setAreaSize(int, int) { + panic(runtime.GOOS + " sysData does not define setAreaSize()") +} // signal sends the event signal. This raise is done asynchronously to avoid deadlocking the UI task. // Thanks skelterjohn for this techinque: if we can't queue any more events, drop them |
