Johannes Reiff

Results 10 comments of Johannes Reiff

In case anyone is interested: The following CSS fixes the status bar issue shown by @DrBoym: ``` css hbox.statusbar[insertbefore="unreadMessageCount"] { appearance: none !important; } image#me-help { filter: invert(1); } ```...

The directory does not get created automatically, simply create it yourself. And for newer profiles, you might have to [enable this feature in the config editor](https://support.mozilla.org/en-US/questions/1307798).

Currently, we have the ability to toggle between the fully rendered and the plain text version (with some markup) of the description. This has the advantage that it is easy...

The same error (with the same stack trace) occurs on Fedora 35 with Foliate installed via DNF.

Setuptools 61 (released 2022-03-24) allows specifying package metadata (name, homepage, etc.) in pyproject.toml. Although scikit-build extends Setuptools, it does not seem to support this yet. This new Setuptools feature, however,...

I have the same problem. Installing the extension manually causes GNOME to freeze/crash every time I try to log in. This happens on a fresh Fedora 34 install using Wayland.

I can confirm that the issue does not occur in a virtual machine. I have just upgraded to Fedora 35 (Gnome 41.1, Wayland). When installing the extension from source via...

Thanks for the update, @poehlerj! Last time I tried to debug on my Fedora 35 system, I lost all Gnome-related settings for some reason. So I do not want to...

I was finally able to debug the freeze. I was able to narrow it down to two issues: 1. For some reason, no `Display`s are added to the `Gdk.DisplayManager` when...

Interesting, thanks for your hints, @Silvanoc! Unfortunately, `GLib.spawn_command_line_async` does not allow reading stdout. Instead, `GLib.spawn_async_with_pipes` might be a better choice, although it requires more changes.