chores: increase IsLongDuration threshold

This commit is contained in:
Zhe Fang
2025-11-29 21:57:15 -05:00
parent 8e2c977a44
commit dfe428645e

View File

@@ -9,6 +9,6 @@ namespace BetterLyrics.WinUI3.Models
public int StartMs { get; set; }
public string Text { get; set; } = string.Empty;
public int? DurationMs => EndMs - StartMs;
public bool IsLongDuration => DurationMs >= 600;
public bool IsLongDuration => DurationMs >= 700;
}
}