Compare commits

...

2 Commits

Author SHA1 Message Date
mrbesen 7c96b8b188
update lolautoaccept.desktop 2022-09-12 23:41:29 +02:00
mrbesen 6365ef1d6f
refresh on reorder 2022-09-12 21:39:50 +02:00
2 changed files with 11 additions and 1 deletions

8
resources/lolautoaccept.desktop Normal file → Executable file
View File

@ -3,4 +3,10 @@ Type=Application
Name=LoLAutoAccept
Exec=lolautoaccept
Icon=lolautoaccept
Categories=Utility;
Version=1.5
Categories=Game;Utility
Terminal=false
Hidden=false
Keywords=lol;league of legends;lolaa;
SingleMainWindow=true
Comment=Automatically accept LoL games, pick and ban champions, and more.

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