forked from AuroraMiddleware/gtk
Make info bar action area horizontal
A vertical action area causes the info bar to be imposingly large. This defeats the whole point of the info bar which is to be unobtrusive. Not to mention it is impossible to make it look and feel good.
This commit is contained in:
parent
947385ebae
commit
75c8be6b66
@ -56,8 +56,8 @@
|
||||
* #GtkInfoBar is a widget that can be used to show messages to
|
||||
* the user without showing a dialog. It is often temporarily shown
|
||||
* at the top or bottom of a document. In contrast to #GtkDialog, which
|
||||
* has a horizontal action area at the bottom, #GtkInfoBar has a
|
||||
* vertical action area at the side.
|
||||
* has a action area at the bottom, #GtkInfoBar has an action area
|
||||
* at the side.
|
||||
*
|
||||
* The API of #GtkInfoBar is very similar to #GtkDialog, allowing you
|
||||
* to add buttons to the action area with gtk_info_bar_add_button() or
|
||||
|
@ -25,7 +25,7 @@
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="border_width">5</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<property name="orientation">horizontal</property>
|
||||
<property name="spacing">6</property>
|
||||
<property name="layout_style">end</property>
|
||||
<child>
|
||||
|
Loading…
Reference in New Issue
Block a user