From 87c40074624ffb34abc117dfe184c023619a1c10 Mon Sep 17 00:00:00 2001 From: talwat <83217276+talwat@users.noreply.github.com> Date: Fri, 9 Jan 2026 20:10:22 +0100 Subject: [PATCH] chore: fix windows only line --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/ui/interface/window.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 091133d..3edd3b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1350,7 +1350,7 @@ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" [[package]] name = "lowfi" -version = "2.0.1" +version = "2.0.2" dependencies = [ "arc-swap", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 50aba1d..bc5e8b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lowfi" -version = "2.0.1" +version = "2.0.2" rust-version = "1.83.0" edition = "2021" description = "An extremely simple lofi player." diff --git a/src/ui/interface/window.rs b/src/ui/interface/window.rs index f2fa9b9..b7ed718 100644 --- a/src/ui/interface/window.rs +++ b/src/ui/interface/window.rs @@ -84,7 +84,7 @@ impl Window { // We're doing this because Windows is stupid and can't stand // writing to the last line repeatedly. #[cfg(windows)] - let (height, suffix) = (len + 3, linefeed); + let (height, suffix) = (len + 3, newline); #[cfg(not(windows))] let (height, suffix) = (len + 2, "");