From da417a5ee739d7d5277efbdd1e3772dd9a0a8ab4 Mon Sep 17 00:00:00 2001 From: Josip Date: Sat, 10 Oct 2015 19:03:31 +0200 Subject: [PATCH] 7601: Support for Retina Display / HiDPI fix setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7778f3574..eafeb7fbb 100644 --- a/setup.py +++ b/setup.py @@ -448,7 +448,7 @@ ICON_SC = glob.glob(os.path.join(THEME, 'scalable', 'actions', '*.svg')) data_files_gui.append(('share/gramps/images', IMAGE_FILES)) data_files_gui.append(('share/gramps/images/hicolor/16x16/actions', ICON_16)) data_files_gui.append(('share/gramps/images/hicolor/22x22/actions', ICON_22)) -data_files_gui.append(('share/gramps/images/hicolor/22x22/actions', ICON_24)) +data_files_gui.append(('share/gramps/images/hicolor/24x24/actions', ICON_24)) data_files_gui.append(('share/gramps/images/hicolor/48x48/actions', ICON_48)) data_files_gui.append(('share/gramps/images/hicolor/scalable/actions', ICON_SC))