mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-04 04:16:57 +03:00
NOISSUE use rows when uploading screenshots
Using all indexes was quadrupling the uploaded items.
This commit is contained in:
parent
8cf88ffc58
commit
140c31293c
1 changed files with 1 additions and 1 deletions
|
|
@ -280,7 +280,7 @@ void ScreenshotsPage::on_viewFolderBtn_clicked()
|
|||
|
||||
void ScreenshotsPage::on_uploadBtn_clicked()
|
||||
{
|
||||
auto selection = ui->listView->selectionModel()->selectedIndexes();
|
||||
auto selection = ui->listView->selectionModel()->selectedRows();
|
||||
if (selection.isEmpty())
|
||||
return;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue