From 61a331f479171cfbf1cab96ff3797520b3466405 Mon Sep 17 00:00:00 2001 From: Sebastian Krzyszkowiak <dos@dosowisko.net> Date: Fri, 1 Sep 2023 06:34:00 +0200 Subject: [PATCH] scope: Don't stroke the scope's path Stroking limits the usefulness of this function, as applications may want to do something else than stroking the scope's path. --- components/st3m/st3m_scope.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/st3m/st3m_scope.c b/components/st3m/st3m_scope.c index dc7ba982dd..64068ffbf4 100644 --- a/components/st3m/st3m_scope.c +++ b/components/st3m/st3m_scope.c @@ -110,6 +110,4 @@ void st3m_scope_draw(Ctx *ctx) { int y = scope.read_buffer[i] >> shift; ctx_line_to(ctx, x, y); } - - ctx_stroke(ctx); } -- GitLab