From a86762605cd42218eedcafd738b4475516457565 Mon Sep 17 00:00:00 2001 From: Hydrus Network Developer Date: Wed, 19 Jan 2022 15:38:58 -0600 Subject: [PATCH] Version 470 Hotfix Fixing a problem with Qt that has type checked signals --- hydrus/client/gui/pages/ClientGUIManagement.py | 2 +- hydrus/client/gui/search/ClientGUIACDropdown.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hydrus/client/gui/pages/ClientGUIManagement.py b/hydrus/client/gui/pages/ClientGUIManagement.py index 0cba2880..6b49efbb 100644 --- a/hydrus/client/gui/pages/ClientGUIManagement.py +++ b/hydrus/client/gui/pages/ClientGUIManagement.py @@ -942,7 +942,7 @@ def managementScrollbarValueChanged( value ): class ManagementPanel( QW.QScrollArea ): - locationChanged = QC.Signal( bytes ) + locationChanged = QC.Signal( ClientLocation.LocationContext ) SHOW_COLLECT = True diff --git a/hydrus/client/gui/search/ClientGUIACDropdown.py b/hydrus/client/gui/search/ClientGUIACDropdown.py index 8e2234d2..197f4eee 100644 --- a/hydrus/client/gui/search/ClientGUIACDropdown.py +++ b/hydrus/client/gui/search/ClientGUIACDropdown.py @@ -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 ):