Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/library/dlgtrackinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void DlgTrackInfo::init() {

// Store tag edit widget pointers to allow focusing a specific widgets when
// this is opened by double-clicking a WTrackProperty label.
// Associate with property strings taken from library/dao/trackdao.h
// Associate with property strings taken from library/dao/trackdao.cpp
m_propertyWidgets.insert("artist", txtArtist);
m_propertyWidgets.insert("title", txtTitle);
m_propertyWidgets.insert("titleInfo", txtTitle);
Expand All @@ -83,6 +83,15 @@ void DlgTrackInfo::init() {
m_propertyWidgets.insert("grouping", txtGrouping);
m_propertyWidgets.insert("comment", txtComment);
m_propertyWidgets.insert("color", btnColorPicker);
m_propertyWidgets.insert("datetime_added", txtDateAdded);
m_propertyWidgets.insert("duration", txtDuration);
m_propertyWidgets.insert("filetype", txtType);
m_propertyWidgets.insert("filesize", txtFileSize);
m_propertyWidgets.insert("bitrate", txtBitrate);
m_propertyWidgets.insert("samplerate", txtSamplerate);
m_propertyWidgets.insert("replaygain", txtReplayGain);
m_propertyWidgets.insert("replaygain_peak", txtReplayGain);
m_propertyWidgets.insert("track_locations.location", txtLocation);

coverLayout->insertWidget(0, m_pWCoverArtLabel.get());

Expand Down
Loading