Conversation
Owner
Author
|
@fraggerfox got some time to play around with the build on Linux (WSL). Could you please try this branch to see if the performance is ok? |
denolehov
commented
Jun 21, 2026
Comment on lines
-26
to
-28
| background: color-mix(in srgb, var(--bg-panel) 85%, transparent); | ||
| backdrop-filter: blur(20px) saturate(180%); | ||
| -webkit-backdrop-filter: blur(20px) saturate(180%); |
Owner
Author
There was a problem hiding this comment.
this should improve performance a bit
* Wire XDG_DATA_DIRS through both the dev shell (via shellHook) and the installed-binary wrapper (via --prefix) so GTK can find gsettings schemas for Wayland display-scale reporting; without this the WebView surface allocates at the wrong size. Installed binaries no longer need GDK_BACKEND=x11 as a fallback. * Disable WebKitGTK smooth-scrolling via window.with_webview on the CLI and MCP review windows (added webkit2gtk = "2.0" as a Linux-only dep, matching wry's version). Wheel events scroll instantly instead of carrying momentum. * Strip backdrop-filter blur from header, session-slot, status-bar, and command-palette — those filters trigger continuous layout recalc on scroll and contribute to layout thrashing in long files. * Add .envrc + .direnv/ ignore for contributors who use direnv.
Collaborator
I tested this out, did not find any issues with it, we can merge this and see how it goes. |
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.
Updates:
Set WEBKIT_DISABLE_DMABUF_RENDERER in src-tauri/src/lib.rs (shell-level WEBKIT_* vars don't reach the WebKit process per Tauri #14427). Works around WebKit2GTK DMABUF renderer bugs that blur scrolled text and mis-size surfaces across various Linux GPU/compositor combos. WebKit bug 262607 is WONTFIX, so this knob is the supported escape hatch.
Export XDG_DATA_DIRS in the dev shell so GTK can find gsettings schemas for Wayland display-scale reporting; without this the WebView surface allocates at the wrong size. The installed-binary wrapper keeps GDK_BACKEND=x11 (no equivalent plumbing for a raw nix profile install).
Disable WebKitGTK smooth-scrolling via window.with_webview on the CLI and MCP review windows (added webkit2gtk = "2.0" as a Linux-only dep, matching wry's version). Wheel events scroll instantly instead of carrying momentum.
Strip backdrop-filter blur from header, session-slot, status-bar, and command-palette — those filters trigger continuous layout recalc on scroll and contribute to layout thrashing in long files.
Add .envrc + .direnv/ ignore for contributors who use direnv.