From 3c8bc27458d649a85a04ee0483fec6023fa4c83e Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Thu, 23 Apr 2026 20:41:35 +0200 Subject: [PATCH] macOS: yet another fix of line drawing (#1409) The call to fixloop() had been accidentally removed by previous commits. This commit fixes it to prevent potential regressions in *other* code (not directly related to symbol drawing). --- src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx b/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx index bcb41df96..86ebb5392 100644 --- a/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx +++ b/src/drivers/Quartz/Fl_Quartz_Graphics_Driver_vertex.cxx @@ -34,6 +34,7 @@ void Fl_Quartz_Graphics_Driver::end_points() { } void Fl_Quartz_Graphics_Driver::end_loop() { + fixloop(); end_line_or_loop(true); }