Merge pull request #3 from kshalnev/text_name
Do not write text field if its value is name (which is default name)
This commit is contained in:
commit
2766c15966
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,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))))
|
||||
|
|
Loading…
Add table
Reference in a new issue