feat(dock): fully implement StaticDockPanel with app management logic, transparent container styling, and hover-aware auto-close timers

This commit is contained in:
tibssy
2026-02-05 01:37:08 +00:00
parent 4b5c6c4619
commit 6bd43fade6
3 changed files with 415 additions and 31 deletions
+4
View File
@@ -423,6 +423,10 @@ Loader {
if (autoHide && !dockHovered && !anyAppHovered && !peekHovered && !menuHovered) {
if (isStaticMode) {
const panel = getStaticDockPanel();
if (panel && (panel.menuHovered || (panel.currentContextMenu && panel.currentContextMenu.visible))) {
restart();
return;
}
if (panel && panel.isDockHovered) {
restart();
return;