diff --git a/app/css/app.css b/app/css/app.css index b19cf36..2361b7b 100644 --- a/app/css/app.css +++ b/app/css/app.css @@ -564,7 +564,9 @@ button:focus { margin-top: 10px; } #loop_current { - margin-top: 21px; + font-family: 'Menlo', monospace; + font-size: 22px; + margin-top: 13px; margin-right: 50px; width: 93px; text-align: center; diff --git a/app/less/seq.less b/app/less/seq.less index e0c272d..e6920ea 100644 --- a/app/less/seq.less +++ b/app/less/seq.less @@ -210,7 +210,9 @@ } #loop_current{ - margin-top: 21px; + font-family: 'Menlo', monospace; + font-size: 22px; + margin-top: 13px; margin-right: 50px; width: 93px; text-align: center; diff --git a/app/lib/ui/proj.js b/app/lib/ui/proj.js index 2341095..f1fb145 100644 --- a/app/lib/ui/proj.js +++ b/app/lib/ui/proj.js @@ -83,7 +83,6 @@ proj.end = function (c, id, ms) { proj.listen = function () { 'use strict'; ipcRenderer.on(proj.id, function (event, arg) { - console.dir(arg) proj.end(arg.cmd, arg.id, arg.ms); return event.returnValue = true; });