diff options
| author | Jeff Carr <[email protected]> | 2019-05-24 00:18:42 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-05-24 00:18:42 -0700 |
| commit | 83e8db1aacb2cb2192e099e1f297575e1c9f1ecb (patch) | |
| tree | c3be67f973fddfe1c9e5767aafde5a7456887f33 /gui.go | |
| parent | 2c1db72a6fa47c4b6049506e9bfe84109bf3cc46 (diff) | |
standard message window
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'gui.go')
| -rw-r--r-- | gui.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -28,6 +28,7 @@ type GuiDataStructure struct { Version string GitCommit string GoVersion string + Buildtime string HomeDir string Debug bool @@ -295,6 +296,10 @@ func SocketError() { "More detailed information can be shown here.") } +func MessageWindow(msg1 string, msg2 string) { + ui.MsgBox(Data.cloudWindow, msg1, msg2) +} + func ErrorWindow(msg1 string, msg2 string) { ui.MsgBoxError(Data.cloudWindow, msg1, msg2) } |
