diff options
author | Alex ARNAUD <[email protected]> | 2017-11-27 15:57:00 +0100 |
---|---|---|
committer | monsta <[email protected]> | 2017-12-15 11:24:34 +0300 |
commit | 4da5a18ede05f35140c7fc1b51bdb5b0a51295ca (patch) | |
tree | dca3f8a25446e8d161465a83ae1c97e6302ee638 | |
parent | ae9962c5675ed58af8da0346cc7cd8e7899d4db5 (diff) | |
download | mate-control-center-4da5a18ede05f35140c7fc1b51bdb5b0a51295ca.tar.bz2 mate-control-center-4da5a18ede05f35140c7fc1b51bdb5b0a51295ca.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.c | 2 |
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); |