]> git.cworth.org Git - kub/blobdiff - kub.c
Commit to undo changes from previous commit
[kub] / kub.c
diff --git a/kub.c b/kub.c
index f2fe3b22746238219b22931ef13c621e9154495d..99c6f6b6a1f3cedf0b7ee64edc53c3fe948a584a 100644 (file)
--- a/kub.c
+++ b/kub.c
@@ -462,19 +462,19 @@ static gboolean on_button_motion_event (GtkWidget *widget, GdkEventMotion *event
                                        game_t *game, cairo_t *cr)
 {
     tile_t *tile;
-
+    
     tile = &game->deck.tiles[game->current_tile];
-
+    
     /* First, invalidate the region where the tile currently is. */
     gtk_widget_queue_draw_area (widget, tile->x, tile->y, TILE_WIDTH, TILE_HEIGHT);
-                       
+    
     /* Then, move the tile */
     tile->x = event->x;
     tile->y = event->y;
-
+    
     /* Finally, invalidate the region where the tile is now. */
     gtk_widget_queue_draw_area (widget, tile->x, tile->y, TILE_WIDTH, TILE_HEIGHT);
-
+    
     return TRUE;
 }