From fa31b7c0bdb701886419c84b292803b19a077322 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Mon, 25 Sep 2006 22:06:45 +0200 Subject: [PATCH] Align to the center of the icon --- shell/view/home/IconLayout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/view/home/IconLayout.py b/shell/view/home/IconLayout.py index 0ce2ea7c..f5f02674 100644 --- a/shell/view/home/IconLayout.py +++ b/shell/view/home/IconLayout.py @@ -73,7 +73,7 @@ class IconLayout: self._constraints[icon1] = [new_x, new_y] matrix = cairo.Matrix(1, 0, 0, 1, 0, 0) - matrix.translate(new_x, new_y) + matrix.translate(new_x - (width / 2), new_y - (height / 2)) icon1.set_transform(matrix) def update(self):