Axel Martinez
Axel Martinez
@lukepistrol https://github.com/CodeEditApp/CodeEdit/pull/1236
@lukepistrol working on this
@austincondiff @matthijseikelenboom I've taken a look at @Wouter01 PR and I had a similar implementation for building the tree but it collided with the file watcher, I don't know how...
@austincondiff I'm looking into this, do you have a concrete example where this problem is obvious ?
@austincondiff Yeah I've been trying the Digital Color Picker but there can be differences between what is selected and what the monitor is outputting depending on the color profile. I'll...
@austincondiff I found the issue. Xcode uses by default the color profile `Generic RGB` which is an old profile from the NSColorSpace (https://developer.apple.com/documentation/appkit/nscolorspace/1412082-genericrgbcolorspace?language=objc) while SwiftUI defaults to sRGB. For us...
@austincondiff sure : 1 - We are currently using the SwiftUI [Color](https://developer.apple.com/documentation/swiftui/color) class to represent colors. This class accepts an enum [RGBColorSpace](https://developer.apple.com/documentation/swiftui/color/rgbcolorspace) which doesn't include the Generic RGB profile. In...
@austincondiff https://github.com/CodeEditApp/CodeEdit/pull/1566
I tested this and if I switch tabs then the color is displayed correctly for me, does this happen to you too @scrapp08 ?
@plami I had the same problem and it was caused by the library fetching the data synchronously via the `Data(contentsOf: sanitizedSchemeUrl) ` method. I created a PR with a fix...