From f9ed9d14b5a5c10c981e77232c066e0e1cda07ca Mon Sep 17 00:00:00 2001 From: Anthony Dong Date: Mon, 25 Mar 2019 18:12:14 +0100 Subject: ui: split tray logic into tray component Signed-off-by: Anthony Dong Signed-off-by: Jason A. Donenfeld --- ui/ui.go | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'ui/ui.go') diff --git a/ui/ui.go b/ui/ui.go index 633fc19b..2cd558b7 100644 --- a/ui/ui.go +++ b/ui/ui.go @@ -298,3 +298,14 @@ func onQuit() { os.Exit(1) } } + +const aboutText = ` +WireGuard +TODO. + +Copyright (C) 2019 WireGuard LLC. All Rights Reserved. +` + +func onAbout() { + walk.MsgBox(nil, "About WireGuard", aboutText, walk.MsgBoxOK) +} -- cgit v1.2.3-59-g8ed1b