Skip to content

Commit

Permalink
Replace getInteger with PySide2-compatible getInt. (AcademySoftwareFo…
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoTavares authored and ddidonato committed Aug 5, 2020
1 parent 2d5eba9 commit 1b45a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cuegui/cuegui/FilterDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ def createAction(self):
value = float(value)

elif actionType in (opencue.api.filter_pb2.SET_JOB_PRIORITY,):
(value, choice) = QtWidgets.QInputDialog.getInteger(
(value, choice) = QtWidgets.QInputDialog.getInt(
self,
"Create Action",
"What value should this property be set to?",
Expand Down

0 comments on commit 1b45a58

Please sign in to comment.