Skip to content

Commit

Permalink
Merge pull request #11030 from qbittorrent/webui-increase-window-height
Browse files Browse the repository at this point in the history
Increase WebUI window heights
  • Loading branch information
Chocobo1 authored Aug 8, 2019
2 parents 5558092 + 6b1481d commit f31bcc3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/webui/www/private/scripts/mocha-init.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ const initializeWindows = function() {
paddingVertical: 0,
paddingHorizontal: 0,
width: loadWindowWidth(id, 500),
height: loadWindowHeight(id, 420),
height: loadWindowHeight(id, 600),
onResize: function() {
saveWindowSize(id);
}
Expand All @@ -179,7 +179,7 @@ const initializeWindows = function() {
paddingVertical: 0,
paddingHorizontal: 0,
width: loadWindowWidth(id, 700),
height: loadWindowHeight(id, 500),
height: loadWindowHeight(id, 600),
onResize: function() {
saveWindowSize(id);
}
Expand All @@ -200,7 +200,7 @@ const initializeWindows = function() {
paddingVertical: 0,
paddingHorizontal: 0,
width: loadWindowWidth(id, 500),
height: loadWindowHeight(id, 260),
height: loadWindowHeight(id, 460),
onResize: function() {
saveWindowSize(id);
}
Expand Down Expand Up @@ -928,7 +928,7 @@ const initializeWindows = function() {
toolbarURL: 'aboutToolbar.html',
padding: 10,
width: loadWindowWidth(id, 550),
height: loadWindowHeight(id, 290),
height: loadWindowHeight(id, 360),
onResize: function() {
saveWindowSize(id);
}
Expand Down

0 comments on commit f31bcc3

Please sign in to comment.