Web UI: Improve usability of small devices

(cherry picked from commit 78bb4104b0)
This commit is contained in:
Christophe Dumez 2011-12-29 00:24:09 +02:00
parent 6f34c81014
commit 83685942de
3 changed files with 3 additions and 2 deletions

View file

@ -4,6 +4,7 @@
- BUGFIX: Fix torrent addition dialog layout problem (Closes #84650522) - BUGFIX: Fix torrent addition dialog layout problem (Closes #84650522)
- BUGFIX: Do not report any progress for disabled files (Closes #56731485) - BUGFIX: Do not report any progress for disabled files (Closes #56731485)
- BUGFIX: Make torrent sorting case insensitive (Closes #857154) - BUGFIX: Make torrent sorting case insensitive (Closes #857154)
- BUGFIX: Improve Web UI usability of small devices
- I18N: Add Georgian translation - I18N: Add Georgian translation
* Sat Oct 29 2011 - Christophe Dumez <chris@qbittorrent.org> - v2.9.2 * Sat Oct 29 2011 - Christophe Dumez <chris@qbittorrent.org> - v2.9.2

View file

@ -11,7 +11,7 @@
<center> <center>
<br/> <br/>
<h2 class="vcenter"><img class="vcenter" title="Download from URL" src="theme/insert-link"/>_(Download Torrents from their URL or Magnet link)</h2> <h2 class="vcenter"><img class="vcenter" title="Download from URL" src="theme/insert-link"/>_(Download Torrents from their URL or Magnet link)</h2>
<textarea name="list" id="urls" rows="10" cols="1"></textarea> <textarea id="urls" rows="10"></textarea>
<p>_(Only one link per line)</p> <p>_(Only one link per line)</p>
<input type="button" value="_(Download)" id="downButton"/> <input type="button" value="_(Download)" id="downButton"/>
</center> </center>

View file

@ -317,7 +317,7 @@ window.addEvent('load', function(){
if($defined(prop_h)) if($defined(prop_h))
prop_h = prop_h.toInt(); prop_h = prop_h.toInt();
else else
prop_h = 200; prop_h = Window.getSize().y / 2.;
new MochaUI.Panel({ new MochaUI.Panel({
id: 'propertiesPanel', id: 'propertiesPanel',
title: 'Panel', title: 'Panel',