mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-12 18:24:58 +08:00
Save WebUI Statistics window size
This commit is contained in:
parent
1a9b009951
commit
c47e4efade
@ -236,15 +236,19 @@ initializeWindows = function() {
|
||||
};
|
||||
|
||||
StatisticsLinkFN = function() {
|
||||
var id = 'statisticspage';
|
||||
new MochaUI.Window({
|
||||
id: 'statisticspage',
|
||||
id: id,
|
||||
title: 'QBT_TR(Statistics)QBT_TR[CONTEXT=StatsDialog]',
|
||||
loadMethod: 'xhr',
|
||||
contentURL: 'statistics.html',
|
||||
maximizable: false,
|
||||
width: 275,
|
||||
height: 370,
|
||||
padding: 10
|
||||
width: loadWindowWidth(id, 275),
|
||||
height: loadWindowHeight(id, 370),
|
||||
onResize: function() {
|
||||
saveWindowSize(id);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user