fix goroutine handling for pop-up queue

This commit is contained in:
Drew Weymouth
2025-04-10 08:23:56 -07:00
parent 08d477a438
commit 765e21305a
7 changed files with 44 additions and 57 deletions
+6
View File
@@ -33,6 +33,12 @@ const (
DateFormatYMD
)
func FyneDoFunc(f func()) func() {
return func() {
fyne.Do(f)
}
}
func dateFormatForLocale(locale string) DateFormat {
var region string
if i := strings.Index(locale, "-"); i > 0 && len(locale) >= 5 {