mirror of
https://github.com/putyy/res-downloader.git
synced 2026-01-12 22:34:56 +08:00
15 lines
299 B
Go
15 lines
299 B
Go
package core
|
|
|
|
import (
|
|
"github.com/wailsapp/wails/v2/pkg/runtime"
|
|
)
|
|
|
|
func DialogErr(message string) {
|
|
_, _ = runtime.MessageDialog(appOnce.ctx, runtime.MessageDialogOptions{
|
|
Type: runtime.ErrorDialog,
|
|
Title: "Error",
|
|
Message: message,
|
|
DefaultButton: "Cancel",
|
|
})
|
|
}
|