Ignore mouse clicks in deaf parts of the header
This commit is contained in:
parent
400edb58cb
commit
5f348ccb33
3
nncmpp.c
3
nncmpp.c
|
@ -1235,7 +1235,8 @@ app_process_left_mouse_click (int line, int column)
|
||||||
{
|
{
|
||||||
struct tab *tab = g_ctx.active_tab;
|
struct tab *tab = g_ctx.active_tab;
|
||||||
int row_index = line - g_ctx.top_height;
|
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;
|
return;
|
||||||
|
|
||||||
tab->item_selected = row_index + tab->item_top;
|
tab->item_selected = row_index + tab->item_top;
|
||||||
|
|
Loading…
Reference in New Issue