Browse Source

Update combobox.py

pull/64/head
Ceccopierangiolieugenio 3 years ago committed by GitHub
parent
commit
ac51650c88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      TermTk/TTkWidgets/combobox.py

2
TermTk/TTkWidgets/combobox.py

@ -43,7 +43,7 @@ class TTkComboBox(TTkWidget):
self.currentTextChanged = pyTTkSignal(str)
self.editTextChanged = pyTTkSignal(str)
TTkWidget.__init__(self, *args, **kwargs)
self._name = kwargs.get('name' , 'TTkCheckbox' )
self._name = kwargs.get('name' , 'TTkComboBox' )
# self.checked = pyTTkSignal()
self._lineEdit = TTkLineEdit(parent=self)
self._list = kwargs.get('list', [] )

Loading…
Cancel
Save