Fix file dialog

This commit is contained in:
pleb
2026-08-02 20:33:10 -07:00
parent 0773d78621
commit 4dd8e7934f
3 changed files with 13 additions and 23 deletions
+3 -7
View File
@@ -23,15 +23,11 @@ nix run git+https://git.plebsaber.stream/arrowvortex-wine
- Nix with flakes enabled (`experimental-features = nix-command flakes`).
Wine and GUI dependencies come from nixpkgs; you need a working display (X11 or Wayland) for the editor window.
Wine and GUI dependencies come from nixpkgs; you need a working display (X11 or Wayland) for the editor window. The packaged Wine 11.0 launcher has been verified on KDE Plasma Wayland: **File → Open** opens Wine's `Open file` dialog.
## Debugging
Replace `-all` with focused Wine channels around dialogs, shell integration, and file APIs:
```nix
--set WINEDEBUG "+timestamp,+pid,+tid,+seh,+dialog,+commdlg,+shell,+ole,+file,+loaddll"
```
The launcher defaults to quiet Wine logging, but respects `WINEDEBUG` when you set it. Use focused channels around dialogs, shell integration, and file APIs:
Most useful pieces:
@@ -54,4 +50,4 @@ If that is too noisy, start with:
```bash
WINEDEBUG=+x11drv,+wayland,+commdlg
```
```