Revert "Fix crash when conversation scrolled window child changes."

This reverts commit 07966a1156.

This commit was needed due to an issue in GTK
https://bugzilla.gnome.org/show_bug.cgi?id=778190 (which was later
migrated to https://gitlab.gnome.org/GNOME/gtk/-/issues/749).

This was fixed since 3.24.24, so bump the meson version too.
This commit is contained in:
Cédric Bellegarde 2022-09-15 12:23:15 +02:00 committed by Niels De Graef
parent d1dc4e1300
commit 63472121d2
3 changed files with 34 additions and 47 deletions

View file

@ -35,6 +35,7 @@
<object class="GtkGrid" id="conversation_page">
<property name="visible">True</property>
<property name="orientation">vertical</property>
<property name="can_focus">False</property>
<child>
<object class="GtkSearchBar" id="conversation_find_bar">
<property name="visible">True</property>
@ -109,7 +110,24 @@
</packing>
</child>
<child>
<placeholder/>
<object class="GtkScrolledWindow" id="conversation_scroller">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="hexpand">True</property>
<property name="vexpand">True</property>
<property name="hscrollbar_policy">never</property>
<signal name="scroll-event" handler="on_conversation_scroll" swapped="no"/>
<child>
<placeholder/>
</child>
<style>
<class name=".geary-conversation-scroller"/>
</style>
</object>
<packing>
<property name="left_attach">0</property>
<property name="top_attach">1</property>
</packing>
</child>
</object>
<packing>