Align labels nicer
parent
38bd0d4fb8
commit
bb07c68ddb
2
moo.mprj
2
moo.mprj
|
@ -8,7 +8,7 @@
|
|||
<debug>
|
||||
<build_dir>build/debug</build_dir>
|
||||
<configure>
|
||||
<args>--enable-debug=full --enable-all-warnings --enable-project --enable-ctags-plugin</args>
|
||||
<args>--enable-debug=full --enable-all-warnings --enable-project</args>
|
||||
<vars>
|
||||
<var name="CFLAGS">-g</var>
|
||||
<var name="OBJCFLAGS">-g</var>
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
<widget class="GtkLabel" id="description">
|
||||
<property name="visible">True</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="yalign">0</property>
|
||||
<property name="label">It does some stuff</property>
|
||||
<property name="wrap">True</property>
|
||||
</widget>
|
||||
|
@ -53,12 +54,14 @@
|
|||
<property name="right_attach">2</property>
|
||||
<property name="top_attach">2</property>
|
||||
<property name="bottom_attach">3</property>
|
||||
<property name="y_options">GTK_FILL</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<widget class="GtkLabel" id="author">
|
||||
<property name="visible">True</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="yalign">0</property>
|
||||
<property name="label">Some Guy</property>
|
||||
</widget>
|
||||
<packing>
|
||||
|
@ -66,25 +69,27 @@
|
|||
<property name="right_attach">2</property>
|
||||
<property name="top_attach">1</property>
|
||||
<property name="bottom_attach">2</property>
|
||||
<property name="y_options"></property>
|
||||
<property name="y_options">GTK_FILL</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<widget class="GtkLabel" id="version">
|
||||
<property name="visible">True</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="yalign">0</property>
|
||||
<property name="label">0.15</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="left_attach">1</property>
|
||||
<property name="right_attach">2</property>
|
||||
<property name="y_options"></property>
|
||||
<property name="y_options">GTK_FILL</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label3">
|
||||
<property name="visible">True</property>
|
||||
<property name="xalign">1</property>
|
||||
<property name="yalign">0</property>
|
||||
<property name="label" translatable="yes"><b>Description:</b></property>
|
||||
<property name="use_markup">True</property>
|
||||
</widget>
|
||||
|
@ -92,13 +97,14 @@
|
|||
<property name="top_attach">2</property>
|
||||
<property name="bottom_attach">3</property>
|
||||
<property name="x_options">GTK_FILL</property>
|
||||
<property name="y_options"></property>
|
||||
<property name="y_options">GTK_FILL</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label2">
|
||||
<property name="visible">True</property>
|
||||
<property name="xalign">1</property>
|
||||
<property name="yalign">0</property>
|
||||
<property name="label" translatable="yes"><b>Author:</b></property>
|
||||
<property name="use_markup">True</property>
|
||||
</widget>
|
||||
|
@ -106,19 +112,20 @@
|
|||
<property name="top_attach">1</property>
|
||||
<property name="bottom_attach">2</property>
|
||||
<property name="x_options">GTK_FILL</property>
|
||||
<property name="y_options"></property>
|
||||
<property name="y_options">GTK_FILL</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label1">
|
||||
<property name="visible">True</property>
|
||||
<property name="xalign">1</property>
|
||||
<property name="yalign">0</property>
|
||||
<property name="label" translatable="yes"><b>Version:</b></property>
|
||||
<property name="use_markup">True</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="x_options">GTK_FILL</property>
|
||||
<property name="y_options"></property>
|
||||
<property name="y_options">GTK_FILL</property>
|
||||
</packing>
|
||||
</child>
|
||||
</widget>
|
||||
|
|
|
@ -2212,7 +2212,7 @@ MOO_PLUGIN_DEFINE_FULL (FileList, file_list,
|
|||
gboolean
|
||||
_moo_file_list_plugin_init (void)
|
||||
{
|
||||
MooPluginParams params = {FALSE, TRUE};
|
||||
MooPluginParams params = {TRUE, TRUE};
|
||||
return moo_plugin_register (FILE_LIST_PLUGIN_ID,
|
||||
file_list_plugin_get_type (),
|
||||
&file_list_plugin_info,
|
||||
|
|
Loading…
Reference in New Issue