mirror of
https://github.com/Raymo111/i3lock-color.git
synced 2024-12-02 14:05:43 -05:00
Fix inconsistent (date|time)_format length
Fixes #266 Caused by f2d155 when I accidentally made these 64 as well when I meant to only do the fonts
This commit is contained in:
parent
7668ccea3b
commit
c91afea4f6
1 changed files with 2 additions and 2 deletions
4
i3lock.c
4
i3lock.c
|
@ -134,8 +134,8 @@ int layout_align = 0;
|
|||
int modif_align = 0;
|
||||
int greeter_align = 0;
|
||||
|
||||
char time_format[64] = "%H:%M:%S\0";
|
||||
char date_format[64] = "%A, %m %Y\0";
|
||||
char time_format[32] = "%H:%M:%S\0";
|
||||
char date_format[32] = "%A, %m %Y\0";
|
||||
|
||||
char verif_font[64] = "sans-serif\0";
|
||||
char wrong_font[64] = "sans-serif\0";
|
||||
|
|
Loading…
Reference in a new issue