Sam Atkins
Sam Atkins
@nico and @kleinesfilmroellchen if you could take a look at the ICC/audio parts respectively, that would be helpful, since I know very little about either.
(Push just to rebase and fix conflict, no changes yet.)
Fixed up the issues with inspecting audio files, thanks Kleines! Updated the screenshot to match.
Changes: - Rebase to fix up the MimeData changes. - Remove font preview. (You're right Nico, it isn't consistent with showing "properties" of a file. Though, we don't actually have...
Rebased to match the MimeData changes.
Changes: Swapped to `AK::human_readable_digital_time()` for the audio duration text. (Thanks @trflynn89!)
Conflict time! ✨
Changes look fine. But CI disagrees quite strongly!
`element.style` there gets the inline style of an element. (The `` part.) To get the overall style for something, you want `getComputedStyle(element)`, for example: ```js getComputedStyle(element).backgroundPositionX; ``` I've tested and...