diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-11-29 09:46:47 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-11-29 09:47:08 +0100 |
| commit | f7a1777017a6d20bf0a0a255937709bf9b33e458 (patch) | |
| tree | 1bd48d4bb35661928e354ca74a81bb90fc93d468 | |
| parent | 8f9728d511f45c98bc505cdd4f0f8bdbc99dd1a2 (diff) | |
Fix for issue: Arrows have a "gap" (#561)
| -rw-r--r-- | src/fl_symbols.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fl_symbols.cxx b/src/fl_symbols.cxx index 2f86c2394..d15cfaeb7 100644 --- a/src/fl_symbols.cxx +++ b/src/fl_symbols.cxx @@ -238,8 +238,8 @@ static void draw_search(Fl_Color col) static void draw_arrow1(Fl_Color col) { fl_color(col); - BP; vv(-0.8,-0.4); vv(-0.8,0.4); vv(0.0,0.4); vv(0.0,-0.4); EP; - BP; vv(0.0,0.8); vv(0.8,0.0); vv(0.0,-0.8); vv(0.0,-0.4); vv(0.0,0.4); EP; + BP; vv(-0.8,-0.4); vv(-0.8,0.4); vv(0.0,0.4); vv(0.0,0.8); vv(0.8,0.0); + vv(0.0,-0.8); vv(0.0,-0.4); EP; set_outline_color(col); BC; vv(-0.8,-0.4); vv(-0.8,0.4); vv(0.0,0.4); vv(0.0,0.8); vv(0.8,0.0); vv(0.0,-0.8); vv(0.0,-0.4); EC; |
