We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f1dbf9 + 3c8363a commit 99cbe2aCopy full SHA for 99cbe2a
.gitignore
@@ -55,3 +55,6 @@ docs/_build/
55
56
# PyBuilder
57
target/
58
+
59
+# Visual studio code
60
+.vscode/
i3ipc/i3ipc.py
@@ -813,10 +813,11 @@ def __init__(self, data, parent, conn):
813
self.parent = parent
814
815
# set simple properties
816
- ipc_properties = ['border', 'current_border_width', 'focus', 'focused',
817
- 'fullscreen_mode', 'id', 'layout', 'marks', 'name',
818
- 'orientation', 'percent', 'type', 'urgent', 'window',
819
- 'num', 'scratchpad_state']
+ ipc_properties = ['border', 'current_border_width', 'floating',
+ 'focus', 'focused', 'fullscreen_mode', 'id',
+ 'layout', 'marks', 'name', 'orientation', 'percent',
+ 'type', 'urgent', 'window', 'num', 'scratchpad_state'
820
+ ]
821
for attr in ipc_properties:
822
if attr in data:
823
setattr(self, attr, data[attr])
0 commit comments