mirror of https://github.com/espruino/BangleApps
messagesoverlay - Fix border being a pixel to wide
parent
8f8d91e951
commit
dbfa9dd09d
|
@ -327,7 +327,7 @@ const drawMessage = function(ovr, msg) {
|
|||
const yText = 40;
|
||||
let yLine = yText + 4;
|
||||
|
||||
ovr.setClipRect(2,2,ovr.getWidth() - 4, ovr.getHeight() - 4);
|
||||
ovr.setClipRect(2,2,ovr.getWidth() - 3, ovr.getHeight() - 3);
|
||||
|
||||
const maxTextHeight = ovr.getHeight() - yLine - padding + 2;
|
||||
|
||||
|
|
Loading…
Reference in New Issue