From 461664676ffc673222e7a2ea488f86617ba988ad Mon Sep 17 00:00:00 2001 From: WilliamAnimate Date: Thu, 21 Nov 2024 22:02:52 -0500 Subject: [PATCH] refactor: adjust for slightly smaller binary somehow, doing this affects the binary size: 289,704 -> 289,688 kb ... i have no idea why maybe rust moment --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index d9a1933..ed3728d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -32,9 +32,9 @@ impl Clone for SongControl { #[derive(PartialEq, Default)] pub enum RenderMode { + Safe, // if term is too small, or if under resource constraints, or user specified, or #[default] Full, // the entire TUI - Safe, // if term is too small, or if under resource constraints, or user specified, or NoSpace, }