ContextView: show newly-added fields

And still very boilerplate-y, same as in previous change,
just show the two new Song fields in `Context` view.
This commit is contained in:
Roman Lebedev
2023-06-27 04:56:55 +03:00
committed by Jonas Kvinge
parent e7fc4e7f89
commit 44e5c32bcb
2 changed files with 56 additions and 3 deletions

View File

@@ -138,12 +138,18 @@ class ContextView : public QWidget {
QLabel *label_bitdepth_title_;
QLabel *label_bitrate_title_;
QLabel *label_ebur128_integrated_loudness_title_;
QLabel *label_ebur128_loudness_range_title_;
QLabel *label_filetype_;
QLabel *label_length_;
QLabel *label_samplerate_;
QLabel *label_bitdepth_;
QLabel *label_bitrate_;
QLabel *label_ebur128_integrated_loudness_;
QLabel *label_ebur128_loudness_range_;
Song song_playing_;
Song song_prev_;
QImage image_original_;