mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
ftrack url is label instead of input (as user can't change it)
This commit is contained in:
parent
8049fcdace
commit
e711af6118
1 changed files with 5 additions and 2 deletions
|
|
@ -46,8 +46,11 @@ class CredentialsDialog(QtWidgets.QDialog):
|
|||
self.user_label = QtWidgets.QLabel("Username:")
|
||||
self.api_label = QtWidgets.QLabel("API Key:")
|
||||
|
||||
self.ftsite_input = QtWidgets.QLineEdit()
|
||||
self.ftsite_input.setReadOnly(True)
|
||||
self.ftsite_input = QtWidgets.QLabel()
|
||||
self.ftsite_input.setTextInteractionFlags(
|
||||
QtCore.Qt.TextBrowserInteraction
|
||||
)
|
||||
# self.ftsite_input.setReadOnly(True)
|
||||
self.ftsite_input.setCursor(QtGui.QCursor(QtCore.Qt.IBeamCursor))
|
||||
|
||||
self.user_input = QtWidgets.QLineEdit()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue