From 691f8a6015bafcf6ed4f99a3649d428fb7a8e915 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 12 Apr 2012 23:40:35 +0200 Subject: Refactor startup screen branch Removes the pointless first parameter to io_startup_screen() and saves one wins_update() call if system dialogs are disabled. Signed-off-by: Lukas Fleischer --- src/calcurse.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/calcurse.c') diff --git a/src/calcurse.c b/src/calcurse.c index f681d12..37c3cac 100644 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -161,8 +161,11 @@ main (int argc, char **argv) wins_reinit (); if (notify_bar ()) notify_start_main_thread (); - wins_update (FLAG_ALL); - io_startup_screen (conf.system_dialogs, no_data_file); + if (conf.system_dialogs) + { + wins_update (FLAG_ALL); + io_startup_screen (no_data_file); + } inday = *day_process_storage (0, 0, &inday); wins_slctd_set (CAL); wins_update (FLAG_ALL); -- cgit v1.2.3-54-g00ecf