Remove RESIZE from code as handled by sigwinch

This commit is contained in:
Night Kaly 2024-11-04 20:06:27 +00:00
parent 14ecd17a9a
commit 960d322ef9
Signed by: night0721
SSH key fingerprint: SHA256:B/hgVwUoBpx5vdNsXl9w8XwZljA9766uk6T4ubZp5HM
2 changed files with 0 additions and 5 deletions

4
ccc.c
View file

@ -399,10 +399,6 @@ int main(int argc, char **argv)
case ESC: case ESC:
break; break;
case RESIZE:
half_width = cols / 2 + WINDOW_OFFSET;
list_files();
break;
default: default:
break; break;
} }

View file

@ -51,7 +51,6 @@ In COLS:
#define UP 0x103 #define UP 0x103
#define LEFT 0x104 #define LEFT 0x104
#define RIGHT 0x105 #define RIGHT 0x105
#define RESIZE 278
/* Colros */ /* Colros */
#define GREEN "166;227;161" #define GREEN "166;227;161"