v0.9.18
This commit is contained in:
@@ -1341,8 +1341,8 @@ class FaceNameInputWidget(QWidget):
|
||||
super().__init__(parent)
|
||||
self.main_win = main_win
|
||||
self.region_type = region_type
|
||||
# Usamos deque para gestionar el historial de forma eficiente con un máximo
|
||||
# configurable de elementos.
|
||||
# Use deque to manage history efficiently with a configurable maximum
|
||||
# number of items.
|
||||
max_items = APP_CONFIG.get("faces_menu_max_items",
|
||||
FACES_MENU_MAX_ITEMS_DEFAULT)
|
||||
if self.region_type == "Pet":
|
||||
@@ -1372,7 +1372,7 @@ class FaceNameInputWidget(QWidget):
|
||||
self.name_combo.setToolTip(UITexts.FACE_NAME_TOOLTIP)
|
||||
self.name_combo.lineEdit().setClearButtonEnabled(True)
|
||||
|
||||
# 2. Completer para la funcionalidad de autocompletado.
|
||||
# 2. Completer for autocomplete functionality.
|
||||
self.completer = QCompleter(self)
|
||||
self.completer.setCaseSensitivity(Qt.CaseInsensitive)
|
||||
self.completer.setFilterMode(Qt.MatchContains)
|
||||
|
||||
Reference in New Issue
Block a user