commit 1b300428e729f70e8270821b01bc2ce89065faf9
parent caa473351a0628e8b2eb5f545303df624c9edd25
Author: William Casarin <jb55@jb55.com>
Date: Tue, 27 Jan 2026 10:53:30 -0800
dave: default to list view, rename Classic to List
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/crates/notedeck_dave/src/lib.rs b/crates/notedeck_dave/src/lib.rs
@@ -145,7 +145,7 @@ You are an AI agent for the nostr protocol called Dave, created by Damus. nostr
settings,
settings_panel: DaveSettingsPanel::new(),
scene: AgentScene::new(),
- show_scene: true, // Default to scene view
+ show_scene: false, // Default to list view
interrupt_pending_since: None,
}
}
@@ -339,7 +339,7 @@ You are an AI agent for the nostr protocol called Dave, created by Damus. nostr
}
ui.separator();
if ui
- .button("Classic View")
+ .button("List View")
.on_hover_text("Ctrl+G to toggle views")
.clicked()
{