1
0
Fork 0

messagesoverlay - Remove unused settings

master
Martin Boonk 2023-02-26 20:02:20 +01:00
parent 16a3af8d1b
commit f62da73c55
1 changed files with 7 additions and 11 deletions

View File

@ -27,16 +27,12 @@ let isQuiet = function(){
return quiet;
};
let settings = (() => {
let tmp = {};
tmp.fontSmall = "6x8";
tmp.fontMedium = "Vector:14";
tmp.fontBig = "Vector:20";
tmp.fontLarge = "Vector:30";
return tmp;
})();
let settings = {
fontSmall:"6x8",
fontMedium:"Vector:14",
fontBig:"Vector:20",
fontLarge:"Vector:30",
};
let eventQueue = [];
let callInProgress = false;
@ -145,7 +141,7 @@ let drawScreen = function(ovr, title, titleFont, src, iconcolor, icon){
let showMessage = function(ovr, msg) {
LOG("showMessage");
ovr.setBgColor(settings.colBg);
ovr.setBgColor(ovr.theme.bg);
if (typeof msg.CanscrollDown === "undefined")
msg.CanscrollDown = false;