[improvement][ui] not limiting the name filter size

This commit is contained in:
Vinicius Moreira
2020-06-03 11:27:16 -03:00
parent 46bd1bd7ab
commit c98433a740
2 changed files with 3 additions and 2 deletions

View File

@@ -13,7 +13,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
<img src="https://raw.githubusercontent.com/vinifmor/bauh/staging/pictures/releases/0.9.5/arch_providers.png">
</p>
- minor UI improvements
- UI
- not limiting the name filter size
- minor improvements
- download clients parameters

View File

@@ -188,7 +188,6 @@ class ManageWindow(QWidget):
self.ref_combo_categories = self.toolbar.addWidget(self.combo_categories)
self.input_name_filter = InputFilter(self.apply_filters_async)
self.input_name_filter.setMaxLength(10)
self.input_name_filter.setPlaceholderText(self.i18n['manage_window.name_filter.placeholder'] + '...')
self.input_name_filter.setToolTip(self.i18n['manage_window.name_filter.tooltip'])
self.input_name_filter.setStyleSheet("QLineEdit { background-color: white; color: gray;}")