Skip to content

Commit 1d0c214

Browse files
author
Tony Crisci
authored
Merge pull request #178 from g33kex/fix177
Add sway 'visible' attribute to 'Con'
2 parents 14b5636 + 7c4fa13 commit 1d0c214

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

i3ipc/con.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ def __init__(self, data, parent, conn):
9494
ipc_properties = [
9595
'border', 'current_border_width', 'floating', 'focus', 'focused', 'fullscreen_mode',
9696
'id', 'layout', 'marks', 'name', 'num', 'orientation', 'percent', 'scratchpad_state',
97-
'shell', 'sticky', 'type', 'urgent', 'window', 'pid', 'app_id', 'representation'
97+
'shell', 'sticky', 'type', 'urgent', 'window', 'pid', 'app_id', 'representation',
98+
'visible'
9899
]
99100
for attr in ipc_properties:
100101
if attr in data:

0 commit comments

Comments
 (0)