diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2016-10-02 05:12:13 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2016-10-02 05:12:13 +0200 |
commit | 5f348ccb3349e63c3dccfd10e82973588da2be7a (patch) | |
tree | b02b5b7aa912f3d0e38fa59bd81fb42750957cdb | |
parent | 400edb58cb28dd7bd7ce9822a0065be9bdd13583 (diff) | |
download | nncmpp-5f348ccb3349e63c3dccfd10e82973588da2be7a.tar.gz nncmpp-5f348ccb3349e63c3dccfd10e82973588da2be7a.tar.xz nncmpp-5f348ccb3349e63c3dccfd10e82973588da2be7a.zip |
Ignore mouse clicks in deaf parts of the header
-rw-r--r-- | nncmpp.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |