[gnome-sudoku] Remove cairo_update_layout() call of a filled cell on draw



commit eee5c4ba36bf0467428d11b3c68dbd9d2329f6d8
Author: Parin Porecha <parinporecha gmail com>
Date:   Sun Aug 17 23:01:01 2014 +0200

    Remove cairo_update_layout() call of a filled cell on draw
    
    Fix for https://bugzilla.gnome.org/show_bug.cgi?id=734890

 src/sudoku-view.vala |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)
---
diff --git a/src/sudoku-view.vala b/src/sudoku-view.vala
index c24cfc8..47499b3 100644
--- a/src/sudoku-view.vala
+++ b/src/sudoku-view.vala
@@ -316,7 +316,6 @@ private class SudokuCellView : Gtk.DrawingArea
             c.move_to ((get_allocated_width () - glyph_width * scale) / 2, (get_allocated_height () - 
glyph_height * scale) / 2);
             c.save ();
             c.scale (scale, scale);
-            Pango.cairo_update_layout (c, layout);
             Pango.cairo_show_layout (c, layout);
             c.restore ();
         }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]