summaryrefslogtreecommitdiff
path: root/gui.go
diff options
context:
space:
mode:
Diffstat (limited to 'gui.go')
-rw-r--r--gui.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/gui.go b/gui.go
index 5c887de..478b90e 100644
--- a/gui.go
+++ b/gui.go
@@ -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)
}