diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-12-16 02:02:41 +0100 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-12-16 02:27:39 +0100 |
commit | 82942938be77f407d9bb67b81160e0160e9130e3 (patch) | |
tree | 879159c701874178969e89011d9115bada083a7e /src/io.c | |
parent | e492ac6f952043c3b4adbfffb3711be638a93883 (diff) | |
download | calcurse-82942938be77f407d9bb67b81160e0160e9130e3.zip |
Display correct startup messages
These messages have been swapped accidentally during refactoring.
Regression introduced in 691f8a6015bafcf6ed4f99a3649d428fb7a8e915.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/io.c')
-rw-r--r-- | src/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -888,10 +888,10 @@ void io_startup_screen(int no_data_file) const char *enter = _("Press [ENTER] to continue"); if (no_data_file) - status_mesg(_("Data files found. Data will be loaded now."), enter); - else status_mesg(_("Welcome to Calcurse. Missing data files were created."), enter); + else + status_mesg(_("Data files found. Data will be loaded now."), enter); wgetch(win[KEY].p); } |