extensions-app: Use .content class for lists

Since the `.content` class comes with its own separators, we
don't need the property `use-separators` on the list.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1997>
This commit is contained in:
Romain Vigier 2021-10-04 15:42:48 +02:00 committed by Florian Müllner
parent ec0ee7eaec
commit 35b26229bc

View File

@ -155,10 +155,9 @@
<child> <child>
<object class="GtkListBox" id="userList"> <object class="GtkListBox" id="userList">
<property name="selection-mode">none</property> <property name="selection-mode">none</property>
<property name="show-separators">True</property>
<property name="margin-bottom">24</property> <property name="margin-bottom">24</property>
<style> <style>
<class name="frame"/> <class name="content"/>
</style> </style>
</object> </object>
</child> </child>
@ -179,9 +178,8 @@
<child> <child>
<object class="GtkListBox" id="systemList"> <object class="GtkListBox" id="systemList">
<property name="selection-mode">none</property> <property name="selection-mode">none</property>
<property name="show-separators">True</property>
<style> <style>
<class name="frame"/> <class name="content"/>
</style> </style>
</object> </object>
</child> </child>