Increase default renderstats window size

This commit is contained in:
Brad Davis 2016-04-19 13:37:55 -07:00
parent 5007c9bd4c
commit e4233f87ec

View file

@ -14,8 +14,8 @@ var qml = Script.resolvePath('stats.qml');
var window = new OverlayWindow({ var window = new OverlayWindow({
title: 'Render Stats', title: 'Render Stats',
source: qml, source: qml,
width: 300, width: 320,
height: 200 height: 720
}); });
window.setPosition(500, 50); window.setPosition(500, 50);
window.closed.connect(function() { Script.stop(); }); window.closed.connect(function() { Script.stop(); });