diff options
author | Louie S <louie@example.com> | 2024-03-15 16:12:05 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2024-03-15 16:12:05 -0400 |
commit | 4c2c8bc81df55ab2f0112d16bfd1a9d236b51e6d (patch) | |
tree | 1b44d7e3cf55d22582bd697dce792f7994d3f616 /src/assignmentList.cpp | |
parent | d732bd0f74225828455c5863444b0211faf586d0 (diff) |
Load and apply rules to entries
Diffstat (limited to 'src/assignmentList.cpp')
-rw-r--r-- | src/assignmentList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/assignmentList.cpp b/src/assignmentList.cpp index 673e0b5..a883523 100644 --- a/src/assignmentList.cpp +++ b/src/assignmentList.cpp @@ -103,10 +103,10 @@ QVBoxLayout *AssignmentList::drawEntries(int parent_id) { // styling output->setContentsMargins(5, 0, 0, 0); + // TODO sort entries for(i = 0; i < entries.size(); ++i) { // skip if this entry is set to hidden if(entries[i]->hidden) continue; - // TODO set right click behavior output->addLayout(new EntryLayout(*entries[i])); } |