diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-10-08 05:11:00 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-10-08 05:11:00 +0800 |
commit | aa0bf435cb69cc6a761041e890b8b119d16ef10d (patch) | |
tree | 0e82ba92a513dee9ed768506009e1c8144448d73 | |
parent | e36f95b644d7514cc39420dca304245679573d8f (diff) | |
download | pttbbs-aa0bf435cb69cc6a761041e890b8b119d16ef10d.tar pttbbs-aa0bf435cb69cc6a761041e890b8b119d16ef10d.tar.gz pttbbs-aa0bf435cb69cc6a761041e890b8b119d16ef10d.tar.bz2 pttbbs-aa0bf435cb69cc6a761041e890b8b119d16ef10d.tar.lz pttbbs-aa0bf435cb69cc6a761041e890b8b119d16ef10d.tar.xz pttbbs-aa0bf435cb69cc6a761041e890b8b119d16ef10d.tar.zst pttbbs-aa0bf435cb69cc6a761041e890b8b119d16ef10d.zip |
* ui layout refine
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@4914 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/more.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pttbbs/mbbsd/more.c b/pttbbs/mbbsd/more.c index ffd368cc..40534da4 100644 --- a/pttbbs/mbbsd/more.c +++ b/pttbbs/mbbsd/more.c @@ -120,10 +120,10 @@ static const char { "【瀏覽指令】", "下篇文章 ", "f", "前篇文章 ", "b", - "同主題下篇", "] +", - "同主題前篇", "[ -", - "同主題循序", "t", + "同主題下篇", "] +", + "同主題前篇", "[ -", "同主題首篇", "=", + "同主題循序", "t", "同作者前篇", "A", "同作者下篇", "a", NULL, @@ -155,7 +155,7 @@ common_pmore_help_handler(int y, void *ctx) int i; const char ** p[3] = { hlp_nav, hlp_reply, hlp_spc }; const int cols[3] = { 29, 29, 19 }, // columns - desc[3] = { 11, 11, 13 }; // desc width + desc[3] = { 14, 11, 13 }; // desc width prints( "\n" ANSI_COLOR(1;31) "%-*s%-*s%-*s" ANSI_RESET "\n", cols[0], *p[0]++, cols[1], *p[1]++, cols[2], *p[2]++); // render help page |