-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix colours for dark mode #2639
Conversation
Removes previous 'custom' colours (yellow/purple etc.) from Triggers/Catalog/Plugins views, but by not hard-coding colours, we can use the system's defaults
Looks great here too, thanks for sorting this out! |
@n8henrie @skurfer - there's one more view that I can't update. Xcode keeps crashing on me. I'm only on Xcode 11, maybe it was fixed in a later Xcode. Can you try the following:
Every time I hit save, Xcode crashes :( |
That’s been happening since Xcode 8. I upgraded all the NIBs at one point, but had to skip that one. I even tried using the command-line We talked about it in #2295. This other comment makes it sound like I fixed it somehow, but obviously, I didn’t. |
OK, if that's the case I'll follow the instructions here The crash log for Xcode gives some explanation:
|
@skurfer - I did see one mention that it was an issue with Mojave. If possible, can you please try opening and saving on your latest Xcode/macOs, just in case. If it's still no-go I'll follow the steps above |
0dbcb16
to
5609e50
Compare
Also: disable 'Continue' button when scanning catalog/getting plugins. Fixes #2525
5609e50
to
5993a41
Compare
Opening and saving in Xcode 13.2 on macOS 12.2.1 → Instant crash |
👍 for checking, thanks. 👎 for Xcode! I'll look into it. |
My saga with the insta-crash on I couldn't get it figured out. Tried looking at the diffs made with the Xcode "auto-fix" on similar files to see if I could do it manually, but it didn't seem practical. |
Wait, just like I said in the linked comment, removing the two button cells at the bottom allows me to save it. Do they do anything? Trying to test now. |
Rob to the rescue! That's it, great catch. Those NSPopupCells were just 'floating' which probably isn't allowed and hence why Xcode was crashing. I was able to open and delete them as well. Xib updated and pushed here. This PR should be good to go now. |
Removes previous 'custom' colours (yellow/purple etc.) from Triggers/Catalog/Plugins views, but by not hard-coding colours, we can use the system's defaults
Fixes #2638