fix(ui): disable hardware acceleration to prevent black window#76
Merged
Conversation
…ompatible GPUs On machines with incompatible GPU drivers, broken ANGLE, or VM setups, Chromium's GPU compositor silently fails — resulting in a black window the user can resize but never see content in. Disable hardware acceleration unconditionally since this is a system-cleaner utility where software compositing is perfectly adequate. Also fix the ErrorBoundary to use hardcoded fallback colors instead of CSS variables, so error messages remain visible even when stylesheets fail to load. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
Disables Chromium hardware acceleration unconditionally and fixes the ErrorBoundary to use hardcoded fallback colors instead of CSS variables.
Why?
Users report a persistent black window they can resize but never see content in. This is a well-known Electron issue on machines with incompatible GPU drivers, broken ANGLE backends, or VM setups — the GPU compositor silently fails and only the window's background color (
#09090b) shows. Since Kudu is a system-cleaner utility, software compositing has negligible visual trade-off. The ErrorBoundary fix ensures error messages are visible even when stylesheets fail to load (previously black-on-black).How to test
Checklist
npm testpassesnpm run buildsucceeds