summaryrefslogtreecommitdiffstats
path: root/src/library/dlganalysis.cpp
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2018-03-26 23:16:41 +0200
committerDaniel Schürmann <daschuer@mixxx.org>2018-03-26 23:16:41 +0200
commit332ceb6265b8504ec0359e02ed1ca955dde0a903 (patch)
tree0bf358b230331f2c2b68e1f3f7f96280d6a1d91a /src/library/dlganalysis.cpp
parentdbbfa258de76cedcd52d99f0aff9447026c4eb82 (diff)
Added "Edit Metadata" preferences function, replacing the related Load to deck feature
Diffstat (limited to 'src/library/dlganalysis.cpp')
-rw-r--r--src/library/dlganalysis.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/library/dlganalysis.cpp b/src/library/dlganalysis.cpp
index 52e27740a3..4ff4751be8 100644
--- a/src/library/dlganalysis.cpp
+++ b/src/library/dlganalysis.cpp
@@ -8,10 +8,10 @@
#include "library/dlganalysis.h"
#include "util/assert.h"
-DlgAnalysis::DlgAnalysis(QWidget* parent,
+DlgAnalysis::DlgAnalysis(QWidget* pLibrary,
UserSettingsPointer pConfig,
TrackCollection* pTrackCollection)
- : QWidget(parent),
+ : QWidget(pLibrary),
m_pConfig(pConfig),
m_pTrackCollection(pTrackCollection),
m_bAnalysisActive(false),
@@ -62,6 +62,13 @@ DlgAnalysis::DlgAnalysis(QWidget* parent,
SIGNAL(selectionChanged(const QItemSelection &, const QItemSelection&)),
this,
SLOT(tableSelectionChanged(const QItemSelection &, const QItemSelection&)));
+
+ connect(pLibrary, SIGNAL(setTrackTableFont(QFont)),
+ m_pAnalysisLibraryTableView, SLOT(setTrackTableFont(QFont)));
+ connect(pLibrary, SIGNAL(setTrackTableRowHeight(int)),
+ m_pAnalysisLibraryTableView, SLOT(setTrackTableRowHeight(int)));
+ connect(pLibrary, SIGNAL(setSelectedClick(bool)),
+ m_pAnalysisLibraryTableView, SLOT(setSelectedClick(bool)));
}
DlgAnalysis::~DlgAnalysis() {