Ignore mouse clicks in deaf parts of the header

This commit is contained in:
Přemysl Eric Janouch 2016-10-02 05:12:13 +02:00
parent 400edb58cb
commit 5f348ccb33
Signed by: p
GPG Key ID: B715679E3A361BE6
1 changed files with 2 additions and 1 deletions

View File

@ -1235,7 +1235,8 @@ app_process_left_mouse_click (int line, int column)
{
struct tab *tab = g_ctx.active_tab;
int row_index = line - g_ctx.top_height;
if (row_index >= (int) tab->item_count - tab->item_top)
if (row_index < 0
|| row_index >= (int) tab->item_count - tab->item_top)
return;
tab->item_selected = row_index + tab->item_top;