Detect if is retina.

This commit is contained in:
Devine Lu Linvega 2018-08-03 09:13:14 +12:00
parent 983b307429
commit 74f608d38c
3 changed files with 2 additions and 2 deletions

View File

@ -32,6 +32,7 @@ app.on('ready', () =>
app.win = new BrowserWindow({width: 400, height: 420, minWidth: 400, minHeight: 420,webPreferences: {zoomFactor: 1.0}, backgroundColor:"#000", frame:false, autoHideMenuBar: true, icon: __dirname + '/icon.ico'})
app.win.loadURL(`file://${__dirname}/sources/index.html`);
app.win.scaleFactor = require('electron').screen.getPrimaryDisplay().scaleFactor
app.win.on('closed', () => {
win = null

View File

@ -507,7 +507,6 @@ String.prototype.capitalize = function()
return this.charAt(0).toUpperCase() + this.slice(1).toLowerCase();
}
function is_json(text){ try{ JSON.parse(text);return true; } catch(error){ return false; }}
function pos_is_equal(a,b){ return a && b && a.x == b.x && a.y == b.y }
function clamp(v, min, max) { return v < min ? min : v > max ? max : v; }

View File

@ -8,7 +8,7 @@ function Guide()
this.el.style.height = "320px";
this.show_extras = true;
var scale = 2;
var scale = require('electron').remote.getCurrentWindow().scaleFactor;
this.start = function()
{