Update loop progress styles

This commit is contained in:
mmcwilliams 2019-04-27 22:28:23 -04:00
parent e15d03a536
commit abaeb1cbda
3 changed files with 6 additions and 3 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;
});