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