*fix* make clock buffers a bit larger (1Kb ram is not really much buffer, but users which have a long clock_tooltip or clock_time1 or clock_time2 are

happy)



git-svn-id: http://tint2.googlecode.com/svn/trunk@606 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
Andreas.Fink85 2010-11-23 15:11:57 +00:00
parent 2d085f1a4c
commit 48d428b677

View file

@ -43,9 +43,9 @@ char *clock_rclick_command;
struct timeval time_clock;
PangoFontDescription *time1_font_desc;
PangoFontDescription *time2_font_desc;
static char buf_time[40];
static char buf_date[40];
static char buf_tooltip[40];
static char buf_time[256];
static char buf_date[256];
static char buf_tooltip[512];
int clock_enabled;
static timeout* clock_timeout;