public
Description: Fast, Nimble PDF Writer for Ruby
Homepage: http://prawn.majesticseacreature.com
Clone URL: git://github.com/sandal/prawn.git
fix
sandal (author)
Fri Nov 07 19:16:22 -0800 2008
commit  67f35175b2aca297c30712d2add6ca17786ce16e
tree    a452d5826482ab880fea5599ae3f977ac57dab4e
parent  90b50a6211878cec3beea0f10574f3be331edc82
...
300
301
302
303
 
 
 
304
305
306
...
300
301
302
 
303
304
305
306
307
308
0
@@ -300,7 +300,9 @@ module Prawn
0
       end
0
 
0
       def next_row_color
0
-        C(:row_colors).unshift(C(:row_colors).pop).last
0
+        color = C(:row_colors).shift
0
+        C(:row_colors).push(color)
0
+        color
0
       end
0
 
0
       def reset_row_colors    

Comments