Skip to content

Commit

Permalink
Replace getInteger with PySide2-compatible getInt. (#744)
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoTavares committed Aug 4, 2020
1 parent c480cb1 commit c46d829
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 c46d829

Please sign in to comment.