mirror of
https://github.com/weechat/weechat.git
synced 2026-06-30 06:46:38 +02:00
core: fix color display of last color number + 1 (closes #101)
This commit is contained in:
@@ -15,6 +15,7 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
|
||||
|
||||
== Version 1.0 (under dev)
|
||||
|
||||
* core: fix color display of last color number + 1 (closes #101)
|
||||
* core: add bar item "buffer_short_name" (task #10882)
|
||||
* core: add option "send" in command /input (send text to a buffer)
|
||||
* core: add option "-buffer" in command /command (closes #67)
|
||||
|
||||
@@ -383,9 +383,9 @@ gui_color_get_pair (int fg, int bg)
|
||||
return COLOR_WHITE;
|
||||
|
||||
/* if invalid color, use default fg/bg */
|
||||
if (fg > gui_color_term_colors)
|
||||
if (fg >= gui_color_term_colors)
|
||||
fg = -1;
|
||||
if (bg > gui_color_term_colors)
|
||||
if (bg >= gui_color_term_colors)
|
||||
bg = -1;
|
||||
|
||||
/* compute index for gui_color_pairs with foreground and background */
|
||||
|
||||
Reference in New Issue
Block a user