aboutsummaryrefslogtreecommitdiff
path: root/src/background.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/background.vala')
-rw-r--r--src/background.vala16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/background.vala b/src/background.vala
index 1278c9b..e94c703 100644
--- a/src/background.vala
+++ b/src/background.vala
@@ -223,14 +223,14 @@ class BackgroundLoader : Object
gnome-desktop3 to expose this for our use instead of copying the
code... */
- static const int QUAD_MAX_LEVEL_OF_RECURSION = 16;
- static const int QUAD_MIN_LEVEL_OF_RECURSION = 2;
- static const int QUAD_CORNER_WEIGHT_NW = 3;
- static const int QUAD_CORNER_WEIGHT_NE = 1;
- static const int QUAD_CORNER_WEIGHT_SE = 1;
- static const int QUAD_CORNER_WEIGHT_SW = 3;
- static const int QUAD_CORNER_WEIGHT_CENTER = 2;
- static const int QUAD_CORNER_WEIGHT_TOTAL = (QUAD_CORNER_WEIGHT_NW + QUAD_CORNER_WEIGHT_NE + QUAD_CORNER_WEIGHT_SE + QUAD_CORNER_WEIGHT_SW + QUAD_CORNER_WEIGHT_CENTER);
+ const int QUAD_MAX_LEVEL_OF_RECURSION = 16;
+ const int QUAD_MIN_LEVEL_OF_RECURSION = 2;
+ const int QUAD_CORNER_WEIGHT_NW = 3;
+ const int QUAD_CORNER_WEIGHT_NE = 1;
+ const int QUAD_CORNER_WEIGHT_SE = 1;
+ const int QUAD_CORNER_WEIGHT_SW = 3;
+ const int QUAD_CORNER_WEIGHT_CENTER = 2;
+ const int QUAD_CORNER_WEIGHT_TOTAL = (QUAD_CORNER_WEIGHT_NW + QUAD_CORNER_WEIGHT_NE + QUAD_CORNER_WEIGHT_SE + QUAD_CORNER_WEIGHT_SW + QUAD_CORNER_WEIGHT_CENTER);
/* Pixbuf utilities */
private Gdk.RGBA get_pixbuf_sample (uint8[] pixels,