Open /applications/videobox/sources/Video/Video.php
Find
Find
$return['content'] = new \IPS\Helpers\Form\Editor( 'videobox_content', $item ? $item->content : NULL, FALSE, array( 'app' => 'videobox', 'key' => 'Video', 'autoSaveKey' => 'videobox-new-video', 'attachIds' => ( $item === NULL ? NULL : array( $item->id ) ) ) );
Change to
$return['content'] = new \IPS\Helpers\Form\Editor( 'videobox_content', $item ? $item->content : NULL, TRUE, array( 'app' => 'videobox', 'key' => 'Video', 'autoSaveKey' => 'videobox-new-video', 'attachIds' => ( $item === NULL ? NULL : array( $item->id ) ) ) );
Save