[easytag] Force a margin between the tag label and the tabs



commit 5e6686d300e7500a2c3e90d2c82e3465837e7ea8
Author: David King <amigadave amigadave com>
Date:   Fri Nov 7 19:33:05 2014 +0000

    Force a margin between the tag label and the tabs
    
    Add a GtkBox as a container for the tag label, so that the margin is
    applied when using it as an action widget in the tag area notebook.

 data/tag_area.ui |   21 +++++++++++++--------
 1 files changed, 13 insertions(+), 8 deletions(-)
---
diff --git a/data/tag_area.ui b/data/tag_area.ui
index 883536f..daa05c0 100644
--- a/data/tag_area.ui
+++ b/data/tag_area.ui
@@ -102,15 +102,20 @@
         <property name="border-width">2</property>
         <property name="visible">True</property>
         <child type="action-start">
-            <object class="GtkLabel" id="tag_label">
-                <property name="halign">start</property>
-                <property name="label" translatable="yes">Tag</property>
-                <property name="margin-left">6</property>
-                <property name="margin-right">6</property>
+            <object class="GtkBox" id="tag_label_box">
                 <property name="visible">True</property>
-                <attributes>
-                    <attribute name="weight" value="bold"/>
-                </attributes>
+                <child>
+                    <object class="GtkLabel" id="tag_label">
+                        <property name="halign">start</property>
+                        <property name="label" translatable="yes">Tag</property>
+                        <property name="margin-left">6</property>
+                        <property name="margin-right">6</property>
+                        <property name="visible">True</property>
+                        <attributes>
+                            <attribute name="weight" value="bold"/>
+                        </attributes>
+                    </object>
+                </child>
             </object>
         </child>
         <child>


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]