comparison src/track/media.cc @ 171:03b444cbe55f

graph: improve? drawing the text dark stylesheet: add borders on QMenu, taking inspiration from MPC-HC media: fix warning about missing enums
author Paper <mrpapersonic@gmail.com>
date Mon, 27 Nov 2023 13:51:27 -0500
parents d43d68408d3c
children 649786bae914
comparison
equal deleted inserted replaced
170:c8375765f0fc 171:03b444cbe55f
44 switch (info.type) { 44 switch (info.type) {
45 case animia::MediaInfoType::File: 45 case animia::MediaInfoType::File:
46 case animia::MediaInfoType::Title: 46 case animia::MediaInfoType::Title:
47 vec.push_back(std::filesystem::path(info.value).filename().string()); 47 vec.push_back(std::filesystem::path(info.value).filename().string());
48 success |= true; 48 success |= true;
49 default:
50 break;
49 } 51 }
50 } 52 }
51 } 53 }
52 } 54 }
53 55