From: MINAMI H. <mi...@ch...> - 2002-11-04 15:45:54
|
南です On Mon, 04 Nov 2002 23:55:20 +0900 Tomohiro KUBOTA <tk...@ri...> wrote: > 久保田です。 > > 以下のような要望をもらいました。いかがでしょうか? > もし、よければ、検討してもらえないでしょうか? 文字の下端でなく、baseline下に線を表示する方が大きな文字サイズで 使うときには見栄えがいいかもしれないですね。 こんな感じではどうでしょう? #線幅も太くした方がいい? --- x_screen.c 6 Oct 2002 02:28:06 -0000 1.30 +++ x_screen.c 4 Nov 2002 15:41:04 -0000 @@ -446,5 +446,5 @@ x_get_color( screen->color_man , fg_color)->pixel) ; x_window_fill( &screen->window , - x , y + height - bottom_margin - 1 , current_width - x , 1) ; + x , y + height_to_baseline - bottom_margin + 1, current_width - x , 1) ; } } @@ -872,5 +872,5 @@ x_get_color( screen->color_man , fg_color)->pixel) ; x_window_fill( &screen->window , - x , y + height - bottom_margin - 1 , current_width - x , 1) ; + x , y + height_to_baseline - bottom_margin + 1, current_width - x , 1) ; } } |