移除dockPanelStore.js中右侧和底部面板的日志语句
This commit is contained in:
@@ -959,12 +959,11 @@ export const useDockPanelStore = defineStore('dockPanel', () => {
|
||||
case 'left':
|
||||
newSize = layoutCoordinator.adjustRegionSize('left', panelAreas.left.width, delta)
|
||||
panelAreas.left.width = newSize
|
||||
console.log('dockPanelStore - 左侧面板宽度更新为:', panelAreas.left.width)
|
||||
|
||||
break
|
||||
case 'right':
|
||||
newSize = layoutCoordinator.adjustRegionSize('right', panelAreas.right.width, -delta)
|
||||
panelAreas.right.width = newSize
|
||||
console.log('dockPanelStore - 右侧面板宽度更新为:', panelAreas.right.width)
|
||||
break
|
||||
case 'top':
|
||||
newSize = layoutCoordinator.adjustRegionSize('top', panelAreas.top.height, delta, panelAreas, containerHeight)
|
||||
@@ -974,7 +973,6 @@ export const useDockPanelStore = defineStore('dockPanel', () => {
|
||||
case 'bottom':
|
||||
newSize = layoutCoordinator.adjustRegionSize('bottom', panelAreas.bottom.height, -delta, panelAreas, containerHeight)
|
||||
panelAreas.bottom.height = newSize
|
||||
console.log('dockPanelStore - 底部面板高度更新为:', panelAreas.bottom.height)
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user