commit 04326f45a3f35809f042c2fc1971fcf325d23c21
parent 121edac41cf8b4dc09299298083139dba4166fe6
Author: Sylvia Ivory <git@sivory.net>
Date: Mon, 16 Mar 2026 14:28:36 -0700
Increase journal width
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/src/sylveos/journal.rs b/tools/src/sylveos/journal.rs
@@ -151,7 +151,7 @@ impl Widget for &JournalWidget {
if self.popup_shown() {
if let Some(idx) = table_state.selected() {
if let Some(Some(registers)) = state.lines.get(idx).map(|l| l.registers) {
- let popup_width = area.width * 20 / 100;
+ let popup_width = area.width * 60 / 100;
let popup_height = area.height * 70 / 100;
let popup_x = area.x + (area.width - popup_width) / 2;
let popup_y = area.y + (area.height - popup_height) / 2;