GTK4 - ColumnView - Notify When Columns Are Reordered

Is there a way for running some code when ColumnView columns are reordered?

The following code did not work:

self.columnview.connect("notify::columns", self.on_columns_reordered)

def on_columns_reordered(self, widget, parameter):
    print("test")

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