Sergey Bugaev

Results 246 comments of Sergey Bugaev

No, it's been doing that since https://gitlab.gnome.org/GNOME/vala/-/commit/8f9979da7a75cb91a46e47e61bf35a41c8ff8083 Maybe there is a Heisenbug in Vala (that I could fix)? How do I reproduce that?

It does so in instance init (below in your screenshot), right before `gtk_widget_init_template`

Aha, I can reproduce that. It's indeed missing an ensure for `TubaWidgetsCustomEmojiChooser`. I'll look into it. (By the way, a thought for another day: it would make more sense to...

Okay, so I have a Vala branch that fixes this. Other than `Tuba.Dialogs.ProfileEdit` / `g_type_ensure (TUBA_WIDGETS_TYPE_CUSTOM_EMOJI_CHOOSER);`, the only type affected seems to be `Tuba.Dialogs.Preferences`, which now has: ``` + g_type_ensure...

I did this instead: ```diff diff --git a/src/Application.vala b/src/Application.vala index d8ba5539..8e2dc82e 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -32,7 +32,7 @@ namespace Tuba { public class Application : Adw.Application { public...

> @bugaevc, @janopae, @Kimiblock, @ColinKinloch: Perhaps one of you PR authors are willing to adopt the project? I don't have the capacity to maintain it single-handedly, but I could co-maintain...