diff options
author | Zhang Xianwei <[email protected]> | 2018-01-07 22:25:10 +0800 |
---|---|---|
committer | monsta <[email protected]> | 2018-03-18 11:13:34 +0300 |
commit | 39f475f56a88e76456dead978e889e7e43060804 (patch) | |
tree | 3e292662a46941ff6162ee09101f442ad660a78e /capplets | |
parent | bf899da943f62eba3b78b998334eba1c52874b7b (diff) | |
download | mate-control-center-39f475f56a88e76456dead978e889e7e43060804.tar.bz2 mate-control-center-39f475f56a88e76456dead978e889e7e43060804.tar.xz |
theme-util.c: fix reinstalling the deleted theme can cause failure
fixes https://github.com/mate-desktop/mate-control-center/issues/322
Signed-off-by: Zhang Xianwei <[email protected]>
Diffstat (limited to 'capplets')
-rw-r--r-- | capplets/appearance/theme-util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/capplets/appearance/theme-util.c b/capplets/appearance/theme-util.c index e7c97d06..5f7b6c40 100644 --- a/capplets/appearance/theme-util.c +++ b/capplets/appearance/theme-util.c @@ -99,8 +99,9 @@ gboolean theme_delete (const gchar *name, ThemeType type) break; case THEME_TYPE_META: - theme = (MateThemeCommonInfo *) mate_theme_meta_info_find (name); + theme = (MateThemeCommonInfo *) mate_theme_info_find (name); theme_dir = g_strdup (theme->path); + del_empty_parent = FALSE; break; case THEME_TYPE_CURSOR: |