From 61e2e6e075d4e39e65b345ab3f71308673ba4b72 Mon Sep 17 00:00:00 2001 From: Victor Kareh Date: Wed, 25 Apr 2018 00:22:24 -0400 Subject: 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. --- capplets/common/mate-theme-info.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'capplets/common/mate-theme-info.c') diff --git a/capplets/common/mate-theme-info.c b/capplets/common/mate-theme-info.c index 3012c9b0..54ae3aea 100644 --- a/capplets/common/mate-theme-info.c +++ b/capplets/common/mate-theme-info.c @@ -32,7 +32,6 @@ #include #include #include -#include #include #include #include @@ -384,8 +383,6 @@ MateThemeMetaInfo* mate_theme_read_meta_theme(GFile* meta_theme_uri) str = mate_desktop_item_get_string(meta_theme_ditem, CURSOR_THEME_KEY); - GdkWindow *window = gdk_get_default_root_window (); - gint scale = gdk_window_get_scale_factor (window); if (str != NULL) { meta_theme_info->cursor_theme_name = g_strdup(str); @@ -395,14 +392,13 @@ MateThemeMetaInfo* mate_theme_read_meta_theme(GFile* meta_theme_uri) if (str) meta_theme_info->cursor_size = (int) g_ascii_strtoll(str, NULL, 10); else - meta_theme_info->cursor_size = 18; + meta_theme_info->cursor_size = 24; } else { meta_theme_info->cursor_theme_name = g_strdup("default"); - meta_theme_info->cursor_size = 18; + meta_theme_info->cursor_size = 24; } - meta_theme_info->cursor_size *= scale; str = mate_desktop_item_get_string(meta_theme_ditem, APPLICATION_FONT_KEY); @@ -545,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, 96, 128 }; + const gint filter_sizes[] = { 12, 16, 18, 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); -- cgit v1.2.1