From 7a4c88bfc137f57293919473c9230d9a9eeebb45 Mon Sep 17 00:00:00 2001 From: Louie S Date: Sun, 10 Mar 2024 14:55:13 -0400 Subject: Implemented preferencesDialog --- src/assignmentList.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/assignmentList.cpp') 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() { -- cgit