You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tauri run() function entry point reached
Starting Tauri builder setup...
Linux headless Tauri built!
Setting QT_QPA_PLATFORM to: xcb
App data path: /home/sym/.local/share/liren.project-graph
DEBUG: Starting init_qt_app with path: /home/sym/.local/share/liren.project-graph
DEBUG: Chromium Flags: --disable-gpu-vsync ... (省略)
DEBUG: Setting default QSurfaceFormat
DEBUG: About to create QApplication
DEBUG: QApplication created successfully
DEBUG: Setting up WebEngineView...
GBM is not supported with the current configuration. Fallback to Vulkan rendering in Chromium.
DevTools listening on ws://127.0.0.1:9223/...
DEBUG: QWebEngineView created and settings configured
DEBUG: Loading URL...
DEBUG: Loading tauri://localhost
DEBUG: init_qt_app finished, window show() called
(project-graph:8446): Gdk-WARNING **: 11:33:52.653: eglMakeCurrent failed
Proxy window created successfully
Starting Tauri event loop on main thread...
Remote debugging server started successfully. Try pointing a Chromium-based browser to http://127.0.0.1:9223
Tauri setup closure started
Available windows in setup:
- proxy
- main
- splash
Tauri setup: Hiding main window
DEBUG: TauriSchemeHandler requestStarted for URL: tauri://localhost/, path: /
DEBUG: Requesting asset: index.html
... (资源加载成功) ...
Forwarding IPC request to proxy window: cmd=plugin:store|set, args={"rid":2961540734,"key":"darkTheme","value":"dark"}, headers={}
Forwarding IPC request to proxy window: cmd=plugin:store|set, args={"rid":2961540734,"key":"theme","value":"dark"}, headers={}
Forwarding IPC request to proxy window: cmd=plugin:store|set, args={"rid":2961540734,"key":"darkTheme","value":"dark-blue"}, headers={}
Forwarding IPC request to proxy window: cmd=plugin:store|set, args={"rid":2961540734,"key":"theme","value":"dark-blue"}, headers={}
... (无限循环)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Bug 现象
project-graph应用直接启动后界面加载完成,但随后立即卡死,无法进行任何操作。终端日志显示 theme 和 darkTheme 两个状态在 "dark" 和 "dark-blue" 之间无限循环切换,IPC 调用持续刷屏可以通过
project-graph -- --no-theme临时解决日志输出
完整日志(点击展开)
当前环境
7.1.3-arch1-1AI 推测原因
前端状态管理存在循环依赖:
darkTheme 改变 → 触发 theme 更新
theme 改变 → 触发 darkTheme 更新
形成 dark → dark-blue → dark → dark-blue 的死循环。
可能涉及:
--no-theme 能绕过说明主题模块确实是根因
Beta Was this translation helpful? Give feedback.
All reactions