From e243d631738646d6e1c2f56538441367388ecb3c Mon Sep 17 00:00:00 2001 From: Sisyphus Date: Sun, 26 Jul 2026 07:53:31 +0900 Subject: [PATCH] tlc: FindOutcome::Panelize opens the ExternalPanelize dialog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously FindOutcome::Panelize just printed 'not yet implemented'. Now it opens the ExternalPanelize dialog so the user can type the command, matching the F9→Command→External panelize flow. Tests: 1486 passing (was 1486). No regression. --- local/recipes/tui/tlc/source/src/filemanager/dialog_ops.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/local/recipes/tui/tlc/source/src/filemanager/dialog_ops.rs b/local/recipes/tui/tlc/source/src/filemanager/dialog_ops.rs index 96eb937060..5f8cbb057c 100644 --- a/local/recipes/tui/tlc/source/src/filemanager/dialog_ops.rs +++ b/local/recipes/tui/tlc/source/src/filemanager/dialog_ops.rs @@ -792,9 +792,7 @@ impl FileManager { .set_message(format!("cd {}", dir.display())); } FindOutcome::Panelize => { - self.status.set_message( - "Panelize: not yet implemented in current build".to_string(), - ); + self.dialog = Some(DialogState::ExternalPanelize(Box::default())); } FindOutcome::ExternalPanelize(paths) => { let mut paths = paths;