diff options
| author | Drew DeVault <sir@cmpwn.com> | 2019-05-14 16:34:42 -0400 | 
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2019-05-14 16:44:59 -0400 | 
| commit | db213fd0aed98a79ecb1be2c7b7d61c7d983bedf (patch) | |
| tree | 7570d4934a2de9e5c50a8d1d133792710d98bc66 /widgets | |
| parent | b0b3287bbdadad47757f3543a6560494af9175a8 (diff) | |
Implement :copy (aka :cp)
Diffstat (limited to 'widgets')
| -rw-r--r-- | widgets/account.go | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/widgets/account.go b/widgets/account.go index ba2b8d3..c252e38 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -110,6 +110,10 @@ func (acct *AccountView) Focus(focus bool) {  	// TODO: Unfocus children I guess  } +func (acct *AccountView) Worker() *types.Worker { +	return acct.worker +} +  func (acct *AccountView) connected(msg types.WorkerMessage) {  	switch msg := msg.(type) {  	case *types.Done:  | 
