Browse Source

Remove GUI lock until nsmd is fixed

master
Nils 4 years ago
parent
commit
4015ae6f52
  1. 1
      qtgui/sessiontreecontroller.py

1
qtgui/sessiontreecontroller.py

@ -95,6 +95,7 @@ class SessionItem(QtWidgets.QTreeWidgetItem):
def setLocked(self, state:bool): def setLocked(self, state:bool):
"""Number of clients, symlinks and size change frequently while a session is open/locked. """Number of clients, symlinks and size change frequently while a session is open/locked.
We deactivate the display of these values while locked""" We deactivate the display of these values while locked"""
return
if not state == self.isDisabled(): if not state == self.isDisabled():
self.setDisabled(state) self.setDisabled(state)
if state: if state:

Loading…
Cancel
Save