From bfabf1db5ef40b9e739e5c526a5a530ba45bbe2f Mon Sep 17 00:00:00 2001 From: Constantin Shalnev Date: Tue, 29 Sep 2015 20:14:28 +0300 Subject: [PATCH] Do not write text field if its value is name (which is default name) --- src/libkomwm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libkomwm.py b/src/libkomwm.py index bcffa18..1ff60cc 100644 --- a/src/libkomwm.py +++ b/src/libkomwm.py @@ -286,7 +286,7 @@ def komap_mapswithme(options): dr_cur_subtext.offset_y = int(sp.get('text-offset-y', sp.get('text-offset', 0))) if 'text-offset-x' in sp: dr_cur_subtext.offset_x = int(sp.get('text-offset-x', 0)) - if 'text' in sp: + if 'text' in sp and sp.get('text') != 'name': dr_cur_subtext.text = sp.get('text') has_text.pop() dr_text.priority = min(19000, (base_z + int(st.get('z-index', 0))))