From 67553ec9f5bd9ec3dc79926aa41fb7ba9c0846fd Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Tue, 19 Sep 2017 11:20:03 +1300 Subject: [PATCH] Updated README --- README.md | 4 ++-- main.js | 2 +- sources/scripts/core/ronin.js | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 00cc9d2..b5d5aa6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Marabu +# Ronin -Marabu is a simple open-source graphic design tool. +Ronin is a simple open-source graphic design tool. diff --git a/main.js b/main.js index dafba68..c869ae3 100644 --- a/main.js +++ b/main.js @@ -6,7 +6,7 @@ let win app.on('ready', () => { - win = new BrowserWindow({width: 930, height: 540, backgroundColor:"#000", frame:false, resizable:false, autoHideMenuBar: true, icon: __dirname + '/icon.ico'}) + win = new BrowserWindow({width: 930, height: 540, backgroundColor:"#000", frame:false, resizable:true, autoHideMenuBar: true, icon: __dirname + '/icon.ico'}) win.loadURL(`file://${__dirname}/sources/index.html`) diff --git a/sources/scripts/core/ronin.js b/sources/scripts/core/ronin.js index 4b7b1d5..33b0116 100644 --- a/sources/scripts/core/ronin.js +++ b/sources/scripts/core/ronin.js @@ -116,7 +116,8 @@ function Ronin() this.filename = "default.rin"; this.load = function readTextFile(name) - { + { + return; this.filename = name; var file = "presets/"+name+'?'+new Date().getTime(); var rawFile = new XMLHttpRequest();