Changeset 5e221a77 in mainline for uspace/app/nav/panel.c


Ignore:
Timestamp:
2021-10-24T22:04:28Z (2 years ago)
Author:
Jiri Svoboda <jiri@…>
Children:
1455ea1
Parents:
8922b76
Message:

Page up/down by mouse click on panel border

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/nav/panel.c

    r8922b76 r5e221a77  
    353353                        /* Move to the entry found */
    354354                        panel_cursor_move(panel, entry, entry_idx);
     355                } else {
     356                        /* It's in the border. Top or bottom half? */
     357                        if (pos.y >= (irect.p0.y + irect.p1.y) / 2)
     358                                panel_page_down(panel);
     359                        else
     360                                panel_page_up(panel);
    355361                }
    356362        }
Note: See TracChangeset for help on using the changeset viewer.