diff options
-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 |