From 0ac40be173f9a1410c5149da605ffd1db24fc911 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 4 Aug 2014 13:39:33 -0400 Subject: Removed Control.containerShow() and Control.containerHide() and the overall ability to show and hide Controls in general; too much effort to get right. --- redo/control_darwin.go | 8 -------- 1 file changed, 8 deletions(-) (limited to 'redo/control_darwin.go') diff --git a/redo/control_darwin.go b/redo/control_darwin.go index c356749..faeb899 100644 --- a/redo/control_darwin.go +++ b/redo/control_darwin.go @@ -20,14 +20,6 @@ func basesetParent(c controlPrivate, p *controlParent) { C.parent(c.id(), p.id) } -func basecontainerShow(c controlPrivate) { - C.controlSetHidden(c.id(), C.NO) -} - -func basecontainerHide(c controlPrivate) { - C.controlSetHidden(c.id(), C.YES) -} - func basepreferredSize(c controlPrivate, d *sizing) (int, int) { s := C.controlPrefSize(c.id()) return int(s.width), int(s.height) -- cgit v1.2.3