From 15e766b53a19fdce4220f177bd0c6db7e037b197 Mon Sep 17 00:00:00 2001 From: vng Date: Tue, 29 Mar 2016 17:18:10 +0300 Subject: [PATCH] =?UTF-8?q?Ability=20to=20force=20remove=20=E2=80=9Ctext?= =?UTF-8?q?=E2=80=9D=20style=20entry=20with=20=E2=80=9Ctext=20:=20none?= =?UTF-8?q?=E2=80=9D=20field.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/libkomwm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libkomwm.py b/src/libkomwm.py index 420fd37..87636f9 100644 --- a/src/libkomwm.py +++ b/src/libkomwm.py @@ -218,7 +218,7 @@ def komap_mapswithme(options): has_text = None txfmt = [] for st in zstyle: - if st.get('text') and not st.get('text') in txfmt: + if st.get('text') and st.get('text') != 'none' and not st.get('text') in txfmt: txfmt.append(st.get('text')) if has_text is None: has_text = [] @@ -332,7 +332,7 @@ def komap_mapswithme(options): dr_element.circle.priority = min(19000, (14000 + int(st.get('z-index', 0)))) has_icons = False - if has_text and st.get('text'): + if has_text and st.get('text') and st.get('text') != 'none': has_text = has_text[:2] has_text.reverse() dr_text = dr_element.path_text