List Widget without immediate parent implementing GtkScrollable

I found myself having a GtkGridView as a child of a GtkExpander which is inside of a scrollable GtkBox (resp. the box is inside of GtkScrollableWindow). This combination results in the final widget being too high. This is certainly caused by GtkGridView being inside of GtkExpander. Do I need to rethink the use of GtkGridView in that setting or is it possible to fix the heigh problem?

The effect I’m trying to achieve is to have only one scrollbar and not two nested scrollbars.

How come the Box is inside the ScrollableWindow? If you want to only scroll the GridView, the hierarchy should look like this:

GtkExpander
└─GtkBox
  └─GtkScrollableWindow
    └─GtkGridView

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