This commit is contained in:
Kovid Goyal 2022-06-21 07:29:25 +05:30
parent 340241e5d7
commit 5635216999
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -112,6 +112,7 @@ def create_search_bar(action, name, tooltip=None, placeholder=None, button=None,
def create_simple_input_with_history_native(name, tooltip=None, placeholder=None, history_size=100, input_type='text'): def create_simple_input_with_history_native(name, tooltip=None, placeholder=None, history_size=100, input_type='text'):
# cannot use in standalone viewer because of: https://bugreports.qt.io/browse/QTBUG-54433 # cannot use in standalone viewer because of: https://bugreports.qt.io/browse/QTBUG-54433
# fixed in Qt 6.4.0
dl_id = unique_id() dl_id = unique_id()
dl = document.createElement('datalist') dl = document.createElement('datalist')
dl.id = dl_id dl.id = dl_id