FLTK logo

[Library] r9023 - in branches/branch-1.3: . src

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 All Forums  |  Back to fltk.commit  ]
 
Previous Message ]Next Message ]

[Library] r9023 - in branches/branch-1.3: . src fltk-dev Aug 30, 2011  
 
Author: AlbrechtS
Date: 2011-08-30 00:50:16 -0700 (Tue, 30 Aug 2011)
New Revision: 9023
Log:
Fixed fl_pie() drawing too small on X11 (STR #2703)


Modified:
   branches/branch-1.3/CHANGES
   branches/branch-1.3/src/fl_arci.cxx

Modified: branches/branch-1.3/CHANGES
===================================================================
--- branches/branch-1.3/CHANGES	2011-08-29 10:37:47 UTC (rev 9022)
+++ branches/branch-1.3/CHANGES	2011-08-30 07:50:16 UTC (rev 9023)
@@ -1,6 +1,7 @@
 
 CHANGES IN FLTK 1.3.1
 
+	- Fixed fl_pie() drawing too small on X11 (STR #2703)
 	- Fixed Fl_Menu issue with unusual menu flags (STR #2680)
 	- Fixed Windows DLL import of fl_xid() (STR #2670)
 

Modified: branches/branch-1.3/src/fl_arci.cxx
===================================================================
--- branches/branch-1.3/src/fl_arci.cxx	2011-08-29 10:37:47 UTC (rev 9022)
+++ branches/branch-1.3/src/fl_arci.cxx	2011-08-30 07:50:16 UTC (rev 9023)
@@ -77,6 +77,7 @@
   if (w <= 0 || h <= 0) return;
 
 #if defined(USE_X11)
+  XDrawArc(fl_display, fl_window, fl_gc, x,y,w-1,h-1, int(a1*64),int((a2-a1)*64));
   XFillArc(fl_display, fl_window, fl_gc, x,y,w-1,h-1, int(a1*64),int((a2-a1)*64));
 #elif defined(WIN32)
   if (a1 == a2) return;

Direct Link to Message ]
 
     
Previous Message ]Next Message ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.