From 18aa21d0c0f0c6b703835e7b6664344ff2e68ec0 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 4 Jul 2022 22:01:57 -0700 Subject: [PATCH] keep online help inside of drawing --- help.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/help.lua b/help.lua index f60f9e3..ccaed84 100644 --- a/help.lua +++ b/help.lua @@ -46,7 +46,7 @@ function draw_help_without_mouse_pressed(drawing) love.graphics.print("Press 'esc' now to hide this message", Margin_left+30,y) y = y + Line_height love.graphics.setColor(0,0.5,0, 0.1) - love.graphics.rectangle('fill', Margin_left,drawing.y, App.screen.width, math.max(Drawing.pixels(drawing.h),y-drawing.y)) + love.graphics.rectangle('fill', Margin_left,drawing.y, App.screen.width-Margin_width, math.max(Drawing.pixels(drawing.h),y-drawing.y)) end function draw_help_with_mouse_pressed(drawing) @@ -125,7 +125,7 @@ function draw_help_with_mouse_pressed(drawing) y = y + Line_height end love.graphics.setColor(0,0.5,0, 0.1) - love.graphics.rectangle('fill', Margin_left,drawing.y, App.screen.width, math.max(Drawing.pixels(drawing.h),y-drawing.y)) + love.graphics.rectangle('fill', Margin_left,drawing.y, App.screen.width-Margin_width, math.max(Drawing.pixels(drawing.h),y-drawing.y)) end function current_shape(shape)