feat/vtk-3d-view #7

Merged
gaozheng merged 301 commits from feat/vtk-3d-view into main 2026-06-27 18:43:52 +08:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit d27ef37a24 - Show all commits

View File

@ -62,4 +62,9 @@ void ColumnDrawer::toggleCollapsed()
setMaximumWidth(collapsed_ ? 18 : 318);
}
void ColumnDrawer::expand()
{
if (collapsed_) toggleCollapsed(); // 仅在折叠时展开
}
} // namespace geopro::app

View File

@ -21,6 +21,7 @@ public:
public slots:
void toggleCollapsed();
void expand(); // 强制展开(进入全屏时确保三栏可见)
private:
Column3DDataset* col3D_ = nullptr;