From 565eb815b258c7b6c72d1135a7431b199e250ae0 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Sat, 26 Feb 2022 14:10:01 +1100 Subject: [PATCH 1/2] Fix BGCol issue --- v2/internal/ffenestri/menu_darwin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/internal/ffenestri/menu_darwin.c b/v2/internal/ffenestri/menu_darwin.c index 282d3331e..64d3b7434 100644 --- a/v2/internal/ffenestri/menu_darwin.c +++ b/v2/internal/ffenestri/menu_darwin.c @@ -659,7 +659,7 @@ id createAttributedStringFromStyledLabel(JsonNode *styledLabel, const char* font (CGFloat)g / (CGFloat)255.0, (CGFloat)b / (CGFloat)255.0, (CGFloat)a / (CGFloat)255.0); - msg_id_id(dictionary, s("setObject:forKey:"), colour, NSForegroundColorAttributeName); + msg_id_id(dictionary, s("setObject:forKey:"), colour, NSBackgroundColorAttributeName); } } From 41f35be437dc9cafcb50f014f6e982f88ca32f0d Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Sat, 26 Feb 2022 15:51:33 +1100 Subject: [PATCH 2/2] v2.0.0-alpha.74 --- v2/cmd/wails/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/cmd/wails/version.go b/v2/cmd/wails/version.go index 51a13de7c..4b19094e7 100644 --- a/v2/cmd/wails/version.go +++ b/v2/cmd/wails/version.go @@ -1,3 +1,3 @@ package main -var version = "v2.0.0-alpha.73" +var version = "v2.0.0-alpha.74"