Skip to content

Commit

Permalink
removed commandButton completely
Browse files Browse the repository at this point in the history
  • Loading branch information
maxscheurer committed Dec 22, 2018
1 parent df7efde commit c0f8b8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PyContact/gui/VMDControlPanel.py
Expand Up @@ -289,7 +289,7 @@ def pushConnectVMD(self):
def pushStartVMD(self):
self.startButton.setEnabled(False)
self.stopButton.setEnabled(True)
self.commandButton.setEnabled(True)
# self.commandButton.setEnabled(True)
response = self.vmd.start()
if response == -1:
self.connectButton.setEnabled(True)
Expand All @@ -305,7 +305,7 @@ def pushStopVMD(self):
self.connectButton.setEnabled(False)
self.startButton.setEnabled(True)
self.stopButton.setEnabled(False)
self.commandButton.setEnabled(False)
# self.commandButton.setEnabled(False)
self.loadTopoTrajButton.setEnabled(False)
self.vmd.stop()
self.connected = False
Expand Down

0 comments on commit c0f8b8b

Please sign in to comment.