readded the delete window command

This commit is contained in:
2026-03-03 00:47:20 +00:00
parent e0f21f5d2f
commit d551f7835a
3 changed files with 44 additions and 8 deletions
+4
View File
@@ -60,3 +60,7 @@ func (cds *CDashService) SaveLayout(layoutPath string) error {
func (cds *CDashService) UpdateWindow(idx int16, win *cdashdisplay.UIWindow) error {
return cds.CDash.UpdateWindow(idx, win)
}
func (cds *CDashService) DeleteWindow(idx int16) error {
return cds.CDash.DestroyWindow(idx)
}