chore: container for search text edit field changed
This commit is contained in:
parent
7e967e286c
commit
ea7089dedc
|
@ -2,4 +2,4 @@ import os
|
||||||
|
|
||||||
AUT_PORT = 61500 + int(os.getenv('BUILD_NUMBER', 0))
|
AUT_PORT = 61500 + int(os.getenv('BUILD_NUMBER', 0))
|
||||||
SERVER_PORT = 4322 + int(os.getenv('BUILD_NUMBER', 0))
|
SERVER_PORT = 4322 + int(os.getenv('BUILD_NUMBER', 0))
|
||||||
CURSOR_ANIMATION = True
|
CURSOR_ANIMATION = False
|
||||||
|
|
|
@ -19,7 +19,7 @@ class SendPopup(BasePopup):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self._tab_item_template = QObject('tab_Status_template')
|
self._tab_item_template = QObject('tab_Status_template')
|
||||||
self._search_field = TextEdit('edit_TextEdit')
|
self._search_field = TextEdit('search_TextEdit')
|
||||||
self._asset_list_item = QObject('o_TokenBalancePerChainDelegate_template')
|
self._asset_list_item = QObject('o_TokenBalancePerChainDelegate_template')
|
||||||
self._amount_text_edit = TextEdit('amountInput_TextEdit')
|
self._amount_text_edit = TextEdit('amountInput_TextEdit')
|
||||||
self._paste_button = Button('paste_StatusButton')
|
self._paste_button = Button('paste_StatusButton')
|
||||||
|
|
|
@ -354,7 +354,6 @@ secondary_StatusButton = {"checkable": False, "container": statusDesktop_mainWin
|
||||||
|
|
||||||
# Send Popup
|
# Send Popup
|
||||||
o_StatusTabBar = {"container": statusDesktop_mainWindow_overlay, "type": "StatusTabBar", "unnamed": 1, "visible": True}
|
o_StatusTabBar = {"container": statusDesktop_mainWindow_overlay, "type": "StatusTabBar", "unnamed": 1, "visible": True}
|
||||||
search_TextEdit = {"container": o_StatusTabBar, "id": "edit", "type": "TextEdit", "unnamed": 1, "visible": True}
|
|
||||||
tab_Status_template = {"container": o_StatusTabBar, "type": "StatusBaseText", "unnamed": 1, "visible": True}
|
tab_Status_template = {"container": o_StatusTabBar, "type": "StatusBaseText", "unnamed": 1, "visible": True}
|
||||||
o_TokenBalancePerChainDelegate_template = {"container": statusDesktop_mainWindow_overlay, "type": "TokenBalancePerChainDelegate", "unnamed": 1, "visible": True}
|
o_TokenBalancePerChainDelegate_template = {"container": statusDesktop_mainWindow_overlay, "type": "TokenBalancePerChainDelegate", "unnamed": 1, "visible": True}
|
||||||
amountInput_TextEdit = {"container": statusDesktop_mainWindow_overlay, "objectName": "amountInput", "type": "TextEdit", "visible": True}
|
amountInput_TextEdit = {"container": statusDesktop_mainWindow_overlay, "objectName": "amountInput", "type": "TextEdit", "visible": True}
|
||||||
|
@ -368,6 +367,8 @@ mainnet_StatusListItem = {"container": statusDesktop_mainWindow_overlay, "object
|
||||||
statusListItemSubTitle_StatusTextWithLoadingState = {"container": statusDesktop_mainWindow_overlay, "objectName": "statusListItemSubTitle", "type": "StatusTextWithLoadingState", "visible": True}
|
statusListItemSubTitle_StatusTextWithLoadingState = {"container": statusDesktop_mainWindow_overlay, "objectName": "statusListItemSubTitle", "type": "StatusTextWithLoadingState", "visible": True}
|
||||||
fiatFees_StatusBaseText = {"container": statusDesktop_mainWindow_overlay, "id": "fiatFees", "type": "StatusBaseText", "unnamed": 1, "visible": True}
|
fiatFees_StatusBaseText = {"container": statusDesktop_mainWindow_overlay, "id": "fiatFees", "type": "StatusBaseText", "unnamed": 1, "visible": True}
|
||||||
send_StatusFlatButton = {"checkable": False, "container": statusDesktop_mainWindow_overlay, "objectName": "sendModalFooterSendButton", "type": "StatusFlatButton", "visible": True}
|
send_StatusFlatButton = {"checkable": False, "container": statusDesktop_mainWindow_overlay, "objectName": "sendModalFooterSendButton", "type": "StatusFlatButton", "visible": True}
|
||||||
|
o_SearchBoxWithRightIcon = {"container": statusDesktop_mainWindow_overlay, "type": "SearchBoxWithRightIcon", "unnamed": 1, "visible": True}
|
||||||
|
search_TextEdit = {"container": o_SearchBoxWithRightIcon, "id": "edit", "type": "TextEdit", "unnamed": 1, "visible": True}
|
||||||
|
|
||||||
# Verify identity popup
|
# Verify identity popup
|
||||||
profileSendContactRequestModal_sayWhoYouAreInput_TextEdit = {"container": statusDesktop_mainWindow_overlay, "objectName": "ProfileSendContactRequestModal_sayWhoYouAreInput", "type": "TextEdit", "visible": True}
|
profileSendContactRequestModal_sayWhoYouAreInput_TextEdit = {"container": statusDesktop_mainWindow_overlay, "objectName": "ProfileSendContactRequestModal_sayWhoYouAreInput", "type": "TextEdit", "visible": True}
|
||||||
|
|
Loading…
Reference in New Issue