Merge pull request #1483 from trigger-death/themes-fix-3

Fixed theme features on duplication
This commit is contained in:
Ted John 2015-06-25 23:32:30 +01:00
commit 1e2ee5bf7e
1 changed files with 1 additions and 0 deletions

View File

@ -198,6 +198,7 @@ void theme_create_preset(int duplicate, const char *name)
for (int i = 0; i < (int)gNumThemeWindows; i++) {
gConfigThemes.presets[preset].windows[i] = gConfigThemes.presets[duplicate].windows[i];
}
gConfigThemes.presets[preset].features = gConfigThemes.presets[duplicate].features;
themes_save_preset(preset);
theme_change_preset(preset);
}