Skip to content

Commit

Permalink
Merge branch '284_mc-4.6-menu-ncurses' into mc-4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
aborodin committed Feb 26, 2009
2 parents da56ed2 + 210ffed commit 2377c64
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2009-02-24 Andrew Borodin <[email protected]>

* src/menu.c: menubar_paint_idx(): fixed menu painting for NCurses screen library.

2009-02-24 Mikhail Pobolovets <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion src/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ static void menubar_paint_idx (WMenu *menubar, int idx, int color)
widget_move (&menubar->widget, y, x + 1);
hline (slow_terminal ? ' ' : ACS_HLINE, menubar->max_entry_len);
} else {
const char *text;
const unsigned char *text;

addch((unsigned char)menu->entries [idx].first_letter);
for (text = menu->entries [idx].text; *text; text++)
Expand Down

0 comments on commit 2377c64

Please sign in to comment.