Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
complementarity for: #224 (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
runo280 authored Mar 9, 2021
1 parent 815dd34 commit d8eaf8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion guiscrcpy/ui/pyqt5/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def setupUi(self, NetworkUI):
self.spinBox.setFont(font)
self.spinBox.setToolTipDuration(2)
self.spinBox.setMinimum(1000)
self.spinBox.setMaximum(9999)
self.spinBox.setMaximum(99999)
self.spinBox.setProperty("value", 5555)
self.spinBox.setObjectName("spinBox")
self.gridLayout.addWidget(self.spinBox, 4, 0, 1, 1)
Expand Down
2 changes: 1 addition & 1 deletion guiscrcpy/ui/pyside2/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def setupUi(self, NetworkUI):
self.spinBox.setFont(font)
self.spinBox.setToolTipDuration(2)
self.spinBox.setMinimum(1000)
self.spinBox.setMaximum(9999)
self.spinBox.setMaximum(99999)
self.spinBox.setValue(5555)

self.gridLayout.addWidget(self.spinBox, 4, 0, 1, 1)
Expand Down

1 comment on commit d8eaf8a

@vercel
Copy link

@vercel vercel bot commented on d8eaf8a Mar 9, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.