network: Fix runtime warning

Gtk-WARNING **: Failed to set property GtkImage.icon-size to button: Could not parse integer 'button'

Replaced it with the non-symbolic value "4".
This commit is contained in:
Bastien Nocera 2018-01-23 10:58:00 +01:00
parent 0dd386f405
commit 17c6563e69

View file

@ -215,7 +215,8 @@
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">False</property> <property name="can_focus">False</property>
<property name="icon_name">view-refresh-symbolic</property> <property name="icon_name">view-refresh-symbolic</property>
<property name="icon_size">button</property> <!-- GTK_ICON_SIZE_BUTTON -->
<property name="icon_size">4</property>
</object> </object>
</child> </child>
<style> <style>