1
0
mirror of https://gittea.dev/nova/th.git synced 2025-10-22 02:40:15 -04:00

image previews can now be disabled

This commit is contained in:
nova
2025-09-24 22:44:13 +02:00
parent fb1af6d2d2
commit fe781c2d3c
4 changed files with 45 additions and 27 deletions

4
main.c
View File

@@ -183,8 +183,10 @@ void init() {
threading_init(); /* found in threading.c */
colors_init(); /* in colors.c */
ueberzug_init(); /* in file_previews.c */
dir_init(); /*in dir.c */
#if SETTINGS_UEBERZUG_IMAGE_PREVIEW != 0
ueberzug_init(); /* in file_previews.c */
#endif
ESCDELAY = 10;
char *start_path = getcwd(NULL, 0);