mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix setting 1GB/s speeds in gtkui
This commit is contained in:
parent
b9311d4b57
commit
92eb9feae4
3 changed files with 9 additions and 9 deletions
|
@ -82,7 +82,7 @@
|
|||
<property name="activates_default">True</property>
|
||||
<property name="width_chars">6</property>
|
||||
<property name="xalign">1</property>
|
||||
<property name="adjustment">-1 -1 99999 1 10 0</property>
|
||||
<property name="adjustment">-1 -1 2097151 1 10 0</property>
|
||||
</widget>
|
||||
</child>
|
||||
</widget>
|
||||
|
|
|
@ -1760,7 +1760,7 @@
|
|||
<property name="can_focus">True</property>
|
||||
<property name="width_chars">6</property>
|
||||
<property name="xalign">1</property>
|
||||
<property name="adjustment">-1 -1 99999 1 10 0</property>
|
||||
<property name="adjustment">-1 -1 2097151 1 10 0</property>
|
||||
<property name="digits">1</property>
|
||||
</widget>
|
||||
<packing>
|
||||
|
@ -1778,7 +1778,7 @@
|
|||
<property name="can_focus">True</property>
|
||||
<property name="width_chars">6</property>
|
||||
<property name="xalign">1</property>
|
||||
<property name="adjustment">-1 -1 999999 1 10 0</property>
|
||||
<property name="adjustment">-1 -1 2097151 1 10 0</property>
|
||||
<property name="digits">1</property>
|
||||
</widget>
|
||||
<packing>
|
||||
|
|
|
@ -1484,7 +1484,7 @@ Disabled</property>
|
|||
<property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
|
||||
<property name="tooltip" translatable="yes">The maximum download speed for all torrents. Set -1 for unlimited.</property>
|
||||
<property name="xalign">1</property>
|
||||
<property name="adjustment">-1 -1 60000 1 10 0</property>
|
||||
<property name="adjustment">-1 -1 2097151 1 10 0</property>
|
||||
<property name="climb_rate">1</property>
|
||||
<property name="digits">1</property>
|
||||
<property name="numeric">True</property>
|
||||
|
@ -1503,7 +1503,7 @@ Disabled</property>
|
|||
<property name="can_focus">True</property>
|
||||
<property name="tooltip" translatable="yes">The maximum upload speed for all torrents. Set -1 for unlimited.</property>
|
||||
<property name="xalign">1</property>
|
||||
<property name="adjustment">-1 -1 60000 1 10 0</property>
|
||||
<property name="adjustment">-1 -1 2097151 1 10 0</property>
|
||||
<property name="climb_rate">1</property>
|
||||
<property name="digits">1</property>
|
||||
<property name="numeric">True</property>
|
||||
|
@ -1710,9 +1710,9 @@ Disabled</property>
|
|||
<widget class="GtkSpinButton" id="spin_max_download_per_torrent">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="tooltip" translatable="yes">The maximum number of connections per torrent. Set -1 for unlimited.</property>
|
||||
<property name="tooltip" translatable="yes">The maximum download speed per torrent. Set -1 for unlimited.</property>
|
||||
<property name="xalign">1</property>
|
||||
<property name="adjustment">-1 -1 9000 1 10 0</property>
|
||||
<property name="adjustment">-1 -1 2097151 1 10 0</property>
|
||||
<property name="digits">1</property>
|
||||
<property name="numeric">True</property>
|
||||
</widget>
|
||||
|
@ -1728,9 +1728,9 @@ Disabled</property>
|
|||
<widget class="GtkSpinButton" id="spin_max_upload_per_torrent">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="tooltip" translatable="yes">The maximum number of connections per torrent. Set -1 for unlimited.</property>
|
||||
<property name="tooltip" translatable="yes">The maximum upload speed per torrent. Set -1 for unlimited.</property>
|
||||
<property name="xalign">1</property>
|
||||
<property name="adjustment">-1 -1 9000 1 10 0</property>
|
||||
<property name="adjustment">-1 -1 2097151 1 10 0</property>
|
||||
<property name="digits">1</property>
|
||||
<property name="numeric">True</property>
|
||||
</widget>
|
||||
|
|
Loading…
Add table
Reference in a new issue