summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex ARNAUD <[email protected]>2017-11-27 15:57:00 +0100
committermonsta <[email protected]>2017-12-21 15:04:50 +0300
commita85d9cb9d760eec8e8280641c767bd8ce5b6f289 (patch)
treea740f70f3b074cda9bba9fd766ef3d3b8b84dd61
parent3fab39eb9d58b5af712eb24a4d99207c85b4a1f7 (diff)
downloadmate-control-center-a85d9cb9d760eec8e8280641c767bd8ce5b6f289.tar.bz2
mate-control-center-a85d9cb9d760eec8e8280641c767bd8ce5b6f289.tar.xz
Add the support for cursor sizes of 96 and 128. It could be useful for low-vision persons to be able to increase the size of the their cursors greater than 64. If the cursor theme doesn't provide cursor sizes greater than 64 the behavior is the same.
-rw-r--r--capplets/common/mate-theme-info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/capplets/common/mate-theme-info.c b/capplets/common/mate-theme-info.c
index c80c95f1..678e11fd 100644
--- a/capplets/common/mate-theme-info.c
+++ b/capplets/common/mate-theme-info.c
@@ -541,7 +541,7 @@ read_cursor_theme (GFile *cursor_theme_uri)
MateThemeCursorInfo *cursor_theme_info = NULL;
GFile *parent_uri, *cursors_uri;
- const gint filter_sizes[] = { 12, 16, 24, 32, 36, 40, 48, 64 };
+ const gint filter_sizes[] = { 12, 16, 24, 32, 36, 40, 48, 64, 96, 128 };
const gint num_sizes = G_N_ELEMENTS (filter_sizes);
parent_uri = g_file_get_parent (cursor_theme_uri);