1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-31 11:02:35 +01:00

fixed scroller bug when displaying scroller before

setting initial values
This commit is contained in:
kojima
2001-02-25 20:47:04 +00:00
parent 054d7cc006
commit 64defd4d22
5 changed files with 34 additions and 6 deletions

View File

@@ -876,7 +876,7 @@ static void handleTableEvents(XEvent *event, void *data)
case MotionNotify:
if (table->dragging && event->xmotion.y >= 0) {
row = event->xmotion.y/table->rowHeight;
if (table->clickedRow != row && row >= 0) {
if (table->clickedRow != row && row >= 0 && row < table->rows) {
setRowSelected(table, table->clickedRow, False);
setRowSelected(table, row, True);
table->clickedRow = row;