Skip to content

Commit

Permalink
Implement filter for characters
Browse files Browse the repository at this point in the history
Signed-off-by: Jacki <jacki@thejackimonster.de>
  • Loading branch information
TheJackiMonster committed Dec 17, 2023
1 parent 5a10925 commit 50b9fd4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions manuskript/mainWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1252,12 +1252,16 @@ def loadDatas(self, project):

def makeUIConnections(self):
"Connections that have to be made once only, even when a new project is loaded."
# Characters
self.txtPersosFilter.textChanged.connect(self.lstCharacters.setFilter, F.AUC)
self.lstCharacters.itemSelectionChanged.connect(self.handleCharacterSelectionChanged, F.AUC)

# Plots
self.txtPlotFilter.textChanged.connect(self.lstPlots.setFilter, F.AUC)
self.lstPlots.currentItemChanged.connect(self.changeCurrentPlot, F.AUC)
self.lstSubPlots.clicked.connect(self.changeCurrentSubPlot, F.AUC)

# Outline
self.btnRedacAddFolder.clicked.connect(self.treeRedacOutline.addFolder, F.AUC)
self.btnOutlineAddFolder.clicked.connect(self.treeOutlineOutline.addFolder, F.AUC)
self.btnRedacAddText.clicked.connect(self.treeRedacOutline.addText, F.AUC)
Expand Down

0 comments on commit 50b9fd4

Please sign in to comment.