This moves the actions from the headerbar to the action bar at the bottom of the conversations list when multiple conversations are selected. This changes is needed so that the user can still interact with the conversations when folded. This also hides the actions from the Headerbar and action bar when no conversation is selected.
22 lines
840 B
XML
22 lines
840 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<requires lib="gtk+" version="3.20"/>
|
|
<object class="GtkImage" id="archive_image">
|
|
<property name="visible">True</property>
|
|
<property name="can_focus">False</property>
|
|
<property name="icon_name">mail-archive-symbolic</property>
|
|
</object>
|
|
<template class="ComponentsConversationActionBar" parent="GtkRevealer">
|
|
<property name="visible">True</property>
|
|
<property name="can_focus">False</property>
|
|
<property name="transition_type">slide-up</property>
|
|
<child>
|
|
<object class="GtkBox" id="action_box">
|
|
<property name="visible">True</property>
|
|
<property name="can_focus">False</property>
|
|
<property name="hexpand">True</property>
|
|
<property name="margin">6</property>
|
|
</object>
|
|
</child>
|
|
</template>
|
|
</interface>
|