From 61c670dc9f7c1688cf19454a5bcb4dd5e1f11c09 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Wed, 30 May 2012 20:27:18 -0700 Subject: [PATCH] Fl_Canvas: Use a thicker line style for drawing wires. --- GUI/Widgets/Fl_Canvas.C | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/GUI/Widgets/Fl_Canvas.C b/GUI/Widgets/Fl_Canvas.C index e2d35ec..0ce7c94 100644 --- a/GUI/Widgets/Fl_Canvas.C +++ b/GUI/Widgets/Fl_Canvas.C @@ -365,6 +365,8 @@ void Fl_Canvas::StreamSelectionWiresOut(ostream &s) void Fl_Canvas::DrawWires() { + fl_line_style( FL_SOLID, 2 ); + for(vector::iterator i=m_WireVec.begin(); i!=m_WireVec.end(); i++) { @@ -395,6 +397,8 @@ void Fl_Canvas::DrawWires() } DrawIncompleteWire(); + + fl_line_style( FL_SOLID, 0 ); } ////////////////////////////////////////////////////////////////////////