1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-30 19:03:04 +00:00

fix: make torrent speed limit order consistent in prefs, details dialogs (#4677)

Fixes #988.
This commit is contained in:
Charles Kerr 2023-01-26 22:11:35 -06:00 committed by GitHub
parent 5a8aab2c2d
commit b641906b13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -649,14 +649,14 @@
</widget>
</item>
<item row="1" column="0">
<widget class="QCheckBox" name="singleDownCheck">
<widget class="QCheckBox" name="singleUpCheck">
<property name="text">
<string>Limit &amp;download speed:</string>
<string>Limit &amp;upload speed:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QSpinBox" name="singleDownSpin">
<widget class="QSpinBox" name="singleUpSpin">
<property name="enabled">
<bool>false</bool>
</property>
@ -669,14 +669,14 @@
</widget>
</item>
<item row="2" column="0">
<widget class="QCheckBox" name="singleUpCheck">
<widget class="QCheckBox" name="singleDownCheck">
<property name="text">
<string>Limit &amp;upload speed:</string>
<string>Limit &amp;download speed:</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QSpinBox" name="singleUpSpin">
<widget class="QSpinBox" name="singleDownSpin">
<property name="enabled">
<bool>false</bool>
</property>