changeset 10835:4bbd6f75f173

gl-render.cc: Transpose markers '^' and 'v'.
author Ben Abbott <bpabbott@mac.com>
date Thu, 29 Jul 2010 20:02:36 -0400
parents 05ba991794d4
children 6abf966379de
files src/ChangeLog src/gl-render.cc
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Thu Jul 29 19:44:07 2010 -0400
+++ b/src/ChangeLog	Thu Jul 29 20:02:36 2010 -0400
@@ -1,3 +1,7 @@
+2010-07-29  Ben Abbott <bpabbott@mac.com>
+
+	* gl-render.cc: Transpose markers '^' and 'v'.
+
 2010-07-29  John W. Eaton  <jwe@octave.org>
 
 	* pt-bp.cc (tree_breakpoint::visit_if_command): Also allow
--- a/src/gl-render.cc	Thu Jul 29 19:44:07 2010 -0400
+++ b/src/gl-render.cc	Thu Jul 29 20:02:36 2010 -0400
@@ -3125,14 +3125,14 @@
       glVertex2d (-sz/2, 0);
       glEnd();
       break;
-    case '^':
+    case 'v':
       glBegin ((filled ? GL_POLYGON : GL_LINE_LOOP));
       glVertex2f (0, sz/2);
       glVertex2f (sz/2, -sz/2);
       glVertex2f (-sz/2, -sz/2);
       glEnd ();
       break;
-    case 'v':
+    case '^':
       glBegin ((filled ? GL_POLYGON : GL_LINE_LOOP));
       glVertex2f (0, -sz/2);
       glVertex2f (-sz/2, sz/2);