mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-07 09:41:39 +01:00
25 lines
984 B
Diff
25 lines
984 B
Diff
diff --git a/compizconfig/ccsm/ccm/Settings.py b/compizconfig/ccsm/ccm/Settings.py
|
|
index 0f5104f..d847abd 100644
|
|
--- a/compizconfig/ccsm/ccm/Settings.py
|
|
+++ b/compizconfig/ccsm/ccm/Settings.py
|
|
@@ -115,7 +115,6 @@ class Setting(object):
|
|
label.set_markup(style % desc)
|
|
label.props.xalign = 0
|
|
label.set_size_request(160, -1)
|
|
- label.props.wrap_mode = Gtk.WrapMode.WORD
|
|
label.set_line_wrap(True)
|
|
self.Label = label
|
|
|
|
diff --git a/compizconfig/ccsm/ccm/Utils.py b/compizconfig/ccsm/ccm/Utils.py
|
|
index 1040bb9..fa7eddb 100644
|
|
--- a/compizconfig/ccsm/ccm/Utils.py
|
|
+++ b/compizconfig/ccsm/ccm/Utils.py
|
|
@@ -174,7 +174,6 @@ class Label(Gtk.Label):
|
|
def __init__(self, value = "", wrap = 160):
|
|
Gtk.Label.__init__(self, label=value)
|
|
self.props.xalign = 0
|
|
- self.props.wrap_mode = Gtk.WrapMode.WORD
|
|
self.props.max_width_chars = 20;
|
|
self.set_line_wrap(True)
|
|
self.set_size_request(wrap, -1)
|