diff --git a/TODO.md b/TODO.md index bb58c4c5..9130498d 100644 --- a/TODO.md +++ b/TODO.md @@ -1,18 +1,3 @@ -- see how the member list reacts to a huge unencrypted room -- "rejoin" leftbanner button if room is public -- daybreak color -- html links color -- [debug mode](https://docs.python.org/3/library/asyncio-dev.html) -- `pyotherside.atexit()` -- way to put sidepane back to auto-sizing (snap) -- better look for arrows when sidepane collapsed -- don't put own messages to the right past certain width - -ideas -(^/v) messages unread + messages still sending -sticky avatar at top in event list -ability to cancel message being sent - - Refactoring - Don't bake in size properties for components @@ -20,8 +5,18 @@ ability to cancel message being sent - Past events loading (limit 100) freezes the GUI - need to move upsert func to a WorkerScript - `MessageDelegate.qml:63: TypeError: 'reloadPreviousItem' not a function` + - Horrible performance for big rooms - UI + - "Rejoin" leftbanner button if room is public + - Daybreak color + - Html links color + - [debug mode](https://docs.python.org/3/library/asyncio-dev.html) + - `pyotherside.atexit()` + - Way to put sidepane back to auto-sizing (snap) + - Better look for arrows when sidepane collapsed + - Don't put own messages to the right past certain width + - Invite to room - Accounts delegates background - SidePane delegates hover effect diff --git a/src/qml/UI.qml b/src/qml/UI.qml index 8e0942e0..72febf8d 100644 --- a/src/qml/UI.qml +++ b/src/qml/UI.qml @@ -14,7 +14,7 @@ Item { Connections { target: py onWillLoadAccounts: function(will) { - pageStack.showPage(will ? "Default" : "SignIn") + pageStack.showPage(will ? "Default": "SignIn") if (will) {initialRoomTimer.start()} } }