9990fecc74
Use native ListModel which require a lot of changes, but should be much faster than the old way which exponentially slowed down to a crawl. Also fix some popup bugs (leave/forget). Not working yet: side pane keyboard controls, proper highlight, room & member filtering, local echo replacement
8 lines
188 B
Python
8 lines
188 B
Python
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
"""Provide classes related to data models shared between Python and QML."""
|
|
|
|
from typing import Tuple, Union
|
|
|
|
SyncId = Union[str, Tuple[str]]
|