diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2013-01-05 23:44:52 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2013-01-05 23:44:52 +0800 |
commit | f513e972d1f195debbf009d5cead40f410ffcc92 (patch) | |
tree | 0a3a46ad288eb5e91d2e1554cead2ab85858f74a | |
parent | 4f4e96367f746ca1bc01fa6da4674a44092230cc (diff) | |
download | pttbbs-f513e972d1f195debbf009d5cead40f410ffcc92.tar pttbbs-f513e972d1f195debbf009d5cead40f410ffcc92.tar.gz pttbbs-f513e972d1f195debbf009d5cead40f410ffcc92.tar.bz2 pttbbs-f513e972d1f195debbf009d5cead40f410ffcc92.tar.lz pttbbs-f513e972d1f195debbf009d5cead40f410ffcc92.tar.xz pttbbs-f513e972d1f195debbf009d5cead40f410ffcc92.tar.zst pttbbs-f513e972d1f195debbf009d5cead40f410ffcc92.zip |
Revise more visual effects
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5757 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/include/common.h | 2 | ||||
-rw-r--r-- | pttbbs/mbbsd/bbs.c | 8 | ||||
-rw-r--r-- | pttbbs/mbbsd/chicken.c | 2 |
3 files changed, 8 insertions, 4 deletions
diff --git a/pttbbs/include/common.h b/pttbbs/include/common.h index 1f686796..acc40357 100644 --- a/pttbbs/include/common.h +++ b/pttbbs/include/common.h @@ -222,7 +222,7 @@ #define MAX_RECOMMENDS (100) #define STR_CURSOR "¡´" -#define STR_CURSOR2 "> " +#define STR_CURSOR2 ">>" #define STR_UNCUR " " #define NOTREPLYING -1 diff --git a/pttbbs/mbbsd/bbs.c b/pttbbs/mbbsd/bbs.c index 22a1d0d2..c857799e 100644 --- a/pttbbs/mbbsd/bbs.c +++ b/pttbbs/mbbsd/bbs.c @@ -745,8 +745,12 @@ readdoent(int num, fileheader_t * ent) else strcpy(recom,"0m "); /* start printing */ - if (ent->filemode & FILE_BOTTOM) - outs(" " ANSI_COLOR(1;33) " ¡¹ " ANSI_RESET); + if (ent->filemode & FILE_BOTTOM) { + if (HasUserFlag(UF_MENU_LIGHTBAR)) + outs(" " ANSI_COLOR(33) " ¡¹ " ANSI_RESET); + else + outs(" " ANSI_COLOR(1;33) " ¡¹ " ANSI_RESET); + } else /* recently we found that many boards have >10k articles, * so it's better to use 5+2 (2 for cursor marker) here. diff --git a/pttbbs/mbbsd/chicken.c b/pttbbs/mbbsd/chicken.c index b5cb29ab..bcfa99cb 100644 --- a/pttbbs/mbbsd/chicken.c +++ b/pttbbs/mbbsd/chicken.c @@ -726,7 +726,7 @@ select_menu(int age GCC_UNUSED, chicken_t *mychicken) reload_money(); move(19, 0); - vbarf(ANSI_COLOR(44;37) " ¿ú :" ANSI_COLOR(33) " %-10d" + vbarf(ANSI_COLOR(44;37) " " MONEYNAME ":" ANSI_COLOR(33) " %-10d" #ifdef HAVE_CHICKEN_CS ANSI_COLOR(37) " ±`ÃÑÂI¼Æ :" ANSI_COLOR(33) " %-10d" #endif |