1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:17:35 +00:00

FileManager: Start displaying basic metadata for images

Let's add a new group in the Image tab of the properties window. The
goal is to provide generic metadata, only a few tags are displayed here.
This commit is contained in:
Lucas CHOLLET 2023-12-28 19:26:34 -05:00 committed by Andrew Kaster
parent 383be5e49c
commit cb669675f1
2 changed files with 31 additions and 0 deletions

View file

@ -169,4 +169,15 @@
}
}
}
@GUI::GroupBox {
name: "image_basic_metadata"
title: "Basic Metadata"
preferred_height: "shrink"
visible: false
layout: @GUI::VerticalBoxLayout {
margins: [12, 8, 0]
spacing: 2
}
}
}