From e03e1ec7b053bd3389cefb7a98ba8f1067f76d81 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 5 May 2009 02:00:20 -0400 Subject: [PATCH] Bug Fix - missing defaultwidth in generated .taskrc - The defaultwidth variable is now written to the default .taskrc file, but is commented out to allow ncurses to do it's thing. --- src/Config.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Config.cpp b/src/Config.cpp index 5403accec..1b07606a8 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -149,6 +149,7 @@ void Config::createDefault (const std::string& home) fprintf (out, "next=2\n"); fprintf (out, "dateformat=m/d/Y\n"); fprintf (out, "#monthsperline=2\n"); + fprintf (out, "#defaultwidth=80\n"); fprintf (out, "curses=on\n"); fprintf (out, "color=on\n"); fprintf (out, "due=7\n");