NOISSUE Use Qt's clear button for modpacks.ch page

This replaces our 'Reset' button.
This commit is contained in:
Jamie Mansfield 2021-10-17 20:14:16 +01:00
parent 1869dd0de3
commit b93997501d
No known key found for this signature in database
GPG Key ID: 36F61598F39F67B0
3 changed files with 2 additions and 14 deletions

View File

@ -33,7 +33,6 @@ FtbPage::FtbPage(NewInstanceDialog* dialog, QWidget *parent)
ui->sortByBox->setCurrentText(filterModel->translateCurrentSorting());
connect(ui->searchEdit, &QLineEdit::textChanged, this, &FtbPage::triggerSearch);
connect(ui->resetButton, &QPushButton::clicked, this, &FtbPage::resetSearch);
connect(ui->sortByBox, &QComboBox::currentTextChanged, this, &FtbPage::onSortingSelectionChanged);
connect(ui->packView->selectionModel(), &QItemSelectionModel::currentChanged, this, &FtbPage::onSelectionChanged);
connect(ui->versionSelectionBox, &QComboBox::currentTextChanged, this, &FtbPage::onVersionSelectionChanged);
@ -105,11 +104,6 @@ void FtbPage::triggerSearch()
filterModel->setSearchTerm(ui->searchEdit->text());
}
void FtbPage::resetSearch()
{
ui->searchEdit->setText("");
}
void FtbPage::onSortingSelectionChanged(QString data)
{
auto toSet = filterModel->getAvailableSortings().value(data);

View File

@ -65,7 +65,6 @@ private:
private slots:
void triggerSearch();
void resetSearch();
void onSortingSelectionChanged(QString data);
void onSelectionChanged(QModelIndex first, QModelIndex second);

View File

@ -36,12 +36,8 @@
<property name="placeholderText">
<string>Search and filter ...</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QPushButton" name="resetButton">
<property name="text">
<string>Reset</string>
<property name="clearButtonEnabled">
<bool>true</bool>
</property>
</widget>
</item>
@ -76,7 +72,6 @@
</widget>
<tabstops>
<tabstop>searchEdit</tabstop>
<tabstop>resetButton</tabstop>
<tabstop>versionSelectionBox</tabstop>
</tabstops>
<resources/>