diff options
author | Victor Kareh <[email protected]> | 2018-04-25 00:22:24 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-04-26 10:02:19 +0200 |
commit | 954bf5889930cb92a2bb0b9e930984a619ef58b8 (patch) | |
tree | c6dc8292b8cdad87c09d00bc1dc8130106b8f58f /capplets/appearance | |
parent | f031ccbb44a3623439a8717695f84f11472b609c (diff) | |
download | mate-control-center-954bf5889930cb92a2bb0b9e930984a619ef58b8.tar.bz2 mate-control-center-954bf5889930cb92a2bb0b9e930984a619ef58b8.tar.xz |
Change cursor-size to 24px
The MATE cursor theme does not have an 18px cursor size, so having
a 18px as the default setting does not make sense. Using 24px looks
better in modern displays and allows for proper HiDPI scaling.
Diffstat (limited to 'capplets/appearance')
-rw-r--r-- | capplets/appearance/appearance-style.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/capplets/appearance/appearance-style.c b/capplets/appearance/appearance-style.c index 161917c2..d036c467 100644 --- a/capplets/appearance/appearance-style.c +++ b/capplets/appearance/appearance-style.c @@ -544,7 +544,7 @@ update_cursor_size_scale (MateThemeCursorInfo *theme, if (theme && theme->sizes->len > 0) size = g_array_index (theme->sizes, gint, 0); else - size = 18; + size = 24; } if (size != gsettings_size) |