diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-02-09 02:29:06 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-02-18 17:23:47 -0500 |
| commit | f9f31c57dcea9e3173d25e0c85e028891ad57fca (patch) | |
| tree | de73f6c099de7b8de3d90756ee77668b71ea1781 /src/mainwindow.cpp | |
| parent | b5c0b2b0a220275827cb67e56fc5cb0fc1ece6fa (diff) | |
added support for FilterWidget regexes
Diffstat (limited to 'src/mainwindow.cpp')
| -rw-r--r-- | src/mainwindow.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 8f2dd250..0efb043b 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -2075,6 +2075,8 @@ void MainWindow::readSettings() s.geometry().restoreVisibility(ui->menuBar); s.geometry().restoreVisibility(ui->statusBar); + FilterWidget::setOptions(s.interface().filterOptions()); + { // special case in case someone puts 0 in the INI auto v = s.widgets().index(ui->executablesListBox); @@ -2159,6 +2161,8 @@ void MainWindow::storeSettings() m_Filters->saveState(s); m_DataTab->saveState(s); + + s.interface().setFilterOptions(FilterWidget::options()); } QWidget* MainWindow::qtWidget() |
