refresh on reorder

This commit is contained in:
mrbesen 2022-09-12 21:39:50 +02:00
parent d0d4638ca9
commit 6365ef1d6f
Signed by untrusted user: MrBesen
GPG Key ID: 596B2350DCD67504
1 changed files with 4 additions and 0 deletions

View File

@ -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() {