diff --git a/css/program.css b/css/program.css index 7f13feb..51cc5c4 100644 --- a/css/program.css +++ b/css/program.css @@ -139,7 +139,7 @@ position: relative; z-index: 1000; color: black; - font-size: 18pt; + font-size: 10pt; height: 24px; } diff --git a/program.js b/program.js index 23b9dd0..149e19f 100644 --- a/program.js +++ b/program.js @@ -14,7 +14,7 @@ function showMessage(message, isError) if (status) { status.innerText = message; - status.style.color = isError ? "blue" : "green"; + status.style.color = isError ? "red" : "green"; } } @@ -1790,7 +1790,7 @@ function inkInitialize() } catch (e) { - displayError("inkError" + e.message); + displayError("inkInitialize " + e.toString() + "\n" + e.stack); } }