Fix Border Color

This commit is contained in:
ckcz123 2018-09-21 19:45:00 +08:00
parent 6d24b98947
commit 82a63f7ac0
2 changed files with 2 additions and 2 deletions

View File

@ -2862,7 +2862,7 @@ control.prototype.resize = function(clientWidth, clientHeight) {
height:(canvasWidth - SPACE*2) + unit,
top: canvasTop + unit,
right: 0,
border: '3px #fff solid'
border: statusBarBorder
}
},
{

View File

@ -1459,7 +1459,7 @@ ui.prototype.drawBookDetail = function (index) {
core.setAlpha('data', 0.9);
core.fillRect('data', left, top, right, bottom, '#000000');
core.setAlpha('data', 1);
core.strokeRect('data', left - 1, top - 1, right + 1, bottom + 1, '#FFFFFF', 2);
core.strokeRect('data', left - 1, top - 1, right + 1, bottom + 1, main.borderColor||"#FFFFFF", 2);
// 名称
core.canvas.data.textAlign = "left";