Version 470 Hotfix

Fixing a problem with Qt that has type checked signals
This commit is contained in:
Hydrus Network Developer 2022-01-19 15:38:58 -06:00
parent da83973b33
commit a86762605c
2 changed files with 2 additions and 2 deletions

View File

@ -942,7 +942,7 @@ def managementScrollbarValueChanged( value ):
class ManagementPanel( QW.QScrollArea ):
locationChanged = QC.Signal( bytes )
locationChanged = QC.Signal( ClientLocation.LocationContext )
SHOW_COLLECT = True

View File

@ -1355,7 +1355,7 @@ class AutoCompleteDropdown( QW.QWidget ):
class AutoCompleteDropdownTags( AutoCompleteDropdown ):
locationChanged = QC.Signal( bytes )
locationChanged = QC.Signal( ClientLocation.LocationContext )
tagServiceChanged = QC.Signal( bytes )
def __init__( self, parent, location_context: ClientLocation.LocationContext, tag_service_key ):