Skip to content

Commit

Permalink
v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Martyx00 committed May 16, 2021
1 parent 38c9162 commit 9a87e2d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions collare/collare.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,9 @@ def onDisconnect(self):
self.connectButton.setText("Connect")
self.adminTab.setEnabled(False)
self.newProjectFrame.setEnabled(False)
self.existingProjectFrame.setEnabled(False)
self.existingProjectFrame.setEnabled(False)
self.frame_6.setEnabled(False)
self.projectTab.setEnabled(False)
#self.projectTab.setEnabled(False)

def getPathToRoot(self,treeItem):
Expand Down Expand Up @@ -1070,7 +1072,7 @@ def changePasswordClickHandler(self):
if response.status_code != 200:
self.showPopupBox("Error Changing Password","Something went horribly wrong!",QMessageBox.Critical)
else:
self.showPopupBox("Password Changed",f"Password for user '{self.username}' was changed!",QMessageBox.Information)
self.showPopupBox("Password Changed",f"Password for user '{self.username}' was changed! Please disconnect and connect again with the new password!",QMessageBox.Information)


def addNewGlobalUserClickHandler(self):
Expand Down

0 comments on commit 9a87e2d

Please sign in to comment.