summaryrefslogtreecommitdiff
path: root/src/assignmentList.cpp
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-03-10 14:55:13 -0400
committerLouie S <louie@example.com>2024-03-10 14:55:13 -0400
commit7a4c88bfc137f57293919473c9230d9a9eeebb45 (patch)
tree5b84a03eae581e6464ed527c4fc1e7701be06b13 /src/assignmentList.cpp
parentddee95158867554825092b9c29d8278320b93c61 (diff)
Implemented preferencesDialog
Diffstat (limited to 'src/assignmentList.cpp')
-rw-r--r--src/assignmentList.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/assignmentList.cpp b/src/assignmentList.cpp
index 0912031..75f524e 100644
--- a/src/assignmentList.cpp
+++ b/src/assignmentList.cpp
@@ -17,6 +17,7 @@
#include "backend/db_sqlite.h"
#include "entryLayout.h"
#include "groupLayout.h"
+#include "preferencesDialog.h"
#include "settings.h"
AssignmentList::AssignmentList() {
@@ -117,7 +118,9 @@ void AssignmentList::addGroup() {
}
void AssignmentList::preferences() {
- qDebug() << "WIP";
+ PreferencesDialog preferences_dialog;
+ if(preferences_dialog.exec() == QDialog::Accepted)
+ this->displayWidgets();
}
void AssignmentList::reload() {