miruka

Results 66 comments of miruka

Did you make sure to click on the actual matrix.org server (or type its address in the bottom bar), in the list that shows up before the user/password dialog? The...

When you type in the composer, it saves the text in a file at `$XDG_DATA_HOME/mirage/state.json` (if that variable is set) or `~/.local/share/mirage/state.json`, so that it can be restored if you...

This happens outside of plasma mobile too from #222, still not sure what's going on. Another script to try, paste in a file and run with `python3 `: ```py import...

I believe this is due to matrix-nio not handling [gaps in the sync](https://matrix.org/docs/spec/client_server/latest#syncing) (CTRL+F gaps), so when too many messages happen between two syncs (which happens when hibernating), the server...

> The profile picture is displayed aligned to the left as usual and as expected. The "boxes" are correctly aligned (to the left), too, but the contact's display name is...

They are supposed to use a mono font, the default one being bundled in the application's binary. I assume this is installed from the AUR, so no modification of the...

- Does this happen with `enableKineticScrolling` set to `false` in the config file? - Can you try this basic program (run with `qml Window.qml`) to see if the crash occurs?...

The previous code used kinetic scrolling, here's a new one with the workaround to disable it: ```qml import QtQuick 2.12 import QtQuick.Controls 2.12 ApplicationWindow { width: 640 height: 480 visible:...

In addition to what was said in #22: the way we disable kinetic scrolling is a hack since Qt doesn't offer (yet, hopefully) any solution out of the box, and...

As a possible workaround until this gets fixed, how does kinetic scrolling with a lower maximum velocity feel? You can test with this program, by playing with `maximumFlickVelocity`'s value (it's...