diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-15 19:35:49 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-15 19:35:49 -0400 |
| commit | 0359d3bf4a05e6456af34d365a2a644b49afd6af (patch) | |
| tree | 34de559d2fec7d4b1201cc897a0e79501a3abbf4 /redo/label_unix.go | |
| parent | d824e549f19059e5801beb1fa30605ce93e3e15c (diff) | |
Added Label.isStandalone(), used by Grid. Now for the Grid test...
Diffstat (limited to 'redo/label_unix.go')
| -rw-r--r-- | redo/label_unix.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/redo/label_unix.go b/redo/label_unix.go index 0790539..45a3dad 100644 --- a/redo/label_unix.go +++ b/redo/label_unix.go @@ -54,6 +54,10 @@ func (l *label) SetText(text string) { C.gtk_label_set_text(l.label, ctext) } +func (l *label) isStandalone() bool { + return l.standalone +} + func (l *label) widget() *C.GtkWidget { return l._widget } |
