mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 09:40:10 +00:00
92e21c3f1c
It was added at a time when default buttons had a very large external border that would disrupt aligment. Not a problem nowadays.
23 lines
792 B
XML
23 lines
792 B
XML
<interface>
|
|
<template class="MyDialog" parent="GtkDialog">
|
|
<child type="action">
|
|
<object class="GtkButton" id="cancel_button">
|
|
<property name="visible">True</property>
|
|
<property name="label">_Abort</property>
|
|
<property name="use_underline">True</property>
|
|
</object>
|
|
</child>
|
|
<child type="action">
|
|
<object class="GtkButton" id="go_button">
|
|
<property name="visible">True</property>
|
|
<property name="label">_Go</property>
|
|
<property name="use_underline">True</property>
|
|
</object>
|
|
</child>
|
|
<action-widgets>
|
|
<action-widget response="cancel">cancel_button</action-widget>
|
|
<action-widget response="apply" default="True">go_button</action-widget>
|
|
</action-widgets>
|
|
</template>
|
|
</interface>
|