- wip in porting to PyQt6: fixed OptionalInput and OptionalHideInput GUI elements

This commit is contained in:
Marius Stanciu
2021-08-09 12:25:20 +03:00
committed by Marius
parent 2daf191948
commit 061e109e45
7 changed files with 29 additions and 25 deletions

View File

@@ -6,7 +6,7 @@
# ##########################################################
from appGUI.GUIElements import FCFileSaveDialog, FCEntry, FCTextAreaExtended, FCTextAreaLineNumber, FCButton, \
FCGridLayout
FCGridLayout, FCCheckBox
from PyQt6 import QtPrintSupport, QtWidgets, QtCore, QtGui
from reportlab.platypus import SimpleDocTemplate, Paragraph
@@ -106,7 +106,7 @@ class AppTextEditor(QtWidgets.QWidget):
control_lay.addWidget(self.entryReplace)
# Select All
self.sel_all_cb = QtWidgets.QCheckBox(_('All'))
self.sel_all_cb = FCCheckBox(_('All'))
self.sel_all_cb.setToolTip(_("When checked it will replace all instances in the 'Find' box\n"
"with the text in the 'Replace' box.."))
control_lay.addWidget(self.sel_all_cb)