Suppress unused variable warning in compare metadata

This commit is contained in:
Stu Leak 2025-12-08 20:45:28 -05:00
parent 4f4ecc450d
commit 3bc0d7da35

View File

@ -6838,6 +6838,7 @@ func buildCompareView(state *appState) fyne.CanvasObject {
// Helper function to format metadata
formatMetadata := func(src *videoSource) string {
fileSize := "Unknown"
// origBytes reserved for future reduction calc
origBytes := int64(0)
if fi, err := os.Stat(src.Path); err == nil {
origBytes = fi.Size()