diff options
author | jstebbins <[email protected]> | 2008-06-23 15:14:39 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-06-23 15:14:39 +0000 |
commit | 09ab2003ec02331fdd7bb62560dbbff043e6c361 (patch) | |
tree | ba9d1cc5cb22f7aaaa366def92bcdec85059e232 | |
parent | 638c308e3eb9a80586885e81ce306aaf7b0b61bc (diff) |
LinGui: fix line wrapping in activity window.
word wrapping in gtk is still broken. use character wrapping.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1533 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | gtk/src/ghb.ui | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/src/ghb.ui b/gtk/src/ghb.ui index 139b58d02..64a25f6b4 100644 --- a/gtk/src/ghb.ui +++ b/gtk/src/ghb.ui @@ -3699,7 +3699,7 @@ <property name="can_focus">True</property> <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> <property name="editable">False</property> - <property name="wrap_mode">GTK_WRAP_WORD</property> + <property name="wrap_mode">GTK_WRAP_CHAR</property> </object> </child> </object> |