Skip to content

Commit

Permalink
Minor update for the temporary notes on PS dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
stannam committed Dec 17, 2021
1 parent 21fa402 commit 99ab515
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions corpustools/gui/psgui.py
Original file line number Diff line number Diff line change
Expand Up @@ -672,13 +672,14 @@ def __init__(self, parent, settings, recents, saved, corpus, inventory, showTool

psTempnote_Frame = QFrame()
notelayout = QVBoxLayout()
psTempnote_Frame.setLayout(notelayout)
temp_note = QLabel(text=('* Currently, PCT cannot search for symbols that are only found in '
'pronunciation variants.\n* Even if you can select one in the inventory table,'
' searching for a variant-only segment returns 0.\n'
'* "Syllable search" and "Syllable number filters" only work on a syllabified corpus'))
temp_note.setFont(QFont('Arial', 11))
'pronunciation variants.\n* Even if you can select one from the inventory table,'
' searching for a variant-only segment returns 0.'))
note_font = QFont()
note_font.setPointSize(12)
temp_note.setFont(note_font)
notelayout.addWidget(temp_note)
psTempnote_Frame.setLayout(notelayout)
self.layout().insertWidget(0, self.psFrame)
self.layout().insertWidget(1, psTempnote_Frame)

Expand Down

0 comments on commit 99ab515

Please sign in to comment.