[Gtk4/mingw64]GtkTextView will be crashed when right click?

It will be Segmentation fault when I right click the Sourceview.
What am I missing?
I have the multi-screen with layout of up-down.

gcc test.c $(pkg-config --cflags --libs gtk4 )

#include <gtk/gtk.h>
static void activate (GtkApplication *app,gpointer user_data){
    GtkWidget *window;
    GtkWidget *sourceview = gtk_text_view_new();

    window = gtk_application_window_new (app);
    gtk_window_set_title (GTK_WINDOW (window), "Window");
    gtk_window_set_default_size (GTK_WINDOW (window), 200, 200);

    gtk_window_set_child (GTK_WINDOW (window), sourceview);
    gtk_window_present (GTK_WINDOW (window));
}

int main (int argc, char **argv){
    GtkApplication *app;
    int status;

    app = gtk_application_new ("org.gtk.example", G_APPLICATION_FLAGS_NONE);
    g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
    status = g_application_run (G_APPLICATION (app), argc, argv);
    g_object_unref (app);

    return status;
}

It seems not the issue of gtksourceview but the base widget of gtktextview

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.