[file-roller/gnome-3-8] progress and message dialogs: fixed unnecessary word breaking



commit 829fbe992b75d559cb3a30e2ff1107697616e824
Author: Paolo Bacchilega <paobac src gnome org>
Date:   Sun Aug 18 10:34:09 2013 +0200

    progress and message dialogs: fixed unnecessary word breaking
    
    use WORD_CHAR as wrap mode for labels to not break words if there
    is enough space.
    
    [bug #702919]

 src/ui/message-dialog.ui  |    3 ++-
 src/ui/progress-dialog.ui |    2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/src/ui/message-dialog.ui b/src/ui/message-dialog.ui
index 5b771c2..ee8bfca 100644
--- a/src/ui/message-dialog.ui
+++ b/src/ui/message-dialog.ui
@@ -61,7 +61,8 @@
                     <property name="visible">True</property>
                     <property name="can_focus">False</property>
                     <property name="xalign">0</property>
-                    <property name="use_underline">True</property>
+                    <property name="wrap">True</property>
+                    <property name="wrap_mode">word-char</property>
                     <property name="selectable">True</property>
                   </object>
                   <packing>
diff --git a/src/ui/progress-dialog.ui b/src/ui/progress-dialog.ui
index b72b47e..6297c43 100644
--- a/src/ui/progress-dialog.ui
+++ b/src/ui/progress-dialog.ui
@@ -62,7 +62,7 @@
                     <property name="can_focus">False</property>
                     <property name="xalign">0</property>
                     <property name="wrap">True</property>
-                    <property name="wrap_mode">char</property>
+                    <property name="wrap_mode">word-char</property>
                   </object>
                   <packing>
                     <property name="expand">False</property>


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