diff --git a/src/stagesettings.cpp b/src/stagesettings.cpp index 698914a..9a6ec70 100644 --- a/src/stagesettings.cpp +++ b/src/stagesettings.cpp @@ -10,6 +10,10 @@ StageSettings::StageSettings(QWidget *parent) : QWidget(parent), ui(new Ui::StageSettings) { ui->setupUi(this); + + auto champsmodel = ui->championList->model(); + + QObject::connect(champsmodel, &QAbstractItemModel::rowsMoved, this, &StageSettings::moved); } StageSettings::~StageSettings() {