Changeset 4 for trunk/txlib
- Timestamp:
- 12/11/05 17:00:44 (3 years ago)
- Location:
- trunk/txlib
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/txlib/txvers.h
r1 r4 40 40 // Originally developed for LPTool/DFSee utilities, open-sourced in 2005 41 41 // 42 #define TXLIB_V "1.02 02-12-2005" // JvW Add EventHook/Async Input functions 42 #define TXLIB_V "1.03 08-12-2005" // JvW Home/End in SBVIEW now PgLeft/PgRight 43 //efine TXLIB_V "1.02 02-12-2005" // JvW Add EventHook/Async Input functions 43 44 //efine TXLIB_V "1.02 30-11-2005" // JvW PromptBox with Widgets fixed width 76 44 45 //efine TXLIB_V "1.02 29-11-2005" // JvW minor updates for NetLabs release -
trunk/txlib/txwikey.c
r1 r4 386 386 if (dat->leftcol != 0) 387 387 { 388 dat->leftcol = 0; 388 if (dat->leftcol > sx) 389 { 390 dat->leftcol -= sx; 391 } 392 else 393 { 394 dat->leftcol = 0; 395 } 389 396 upd = TRUE; 390 397 } … … 394 401 if (dat->leftcol != dat->maxcol) 395 402 { 396 dat->leftcol = dat->maxcol; 403 if (dat->leftcol + sx < dat->maxcol) 404 { 405 dat->leftcol += sx; 406 } 407 else 408 { 409 dat->leftcol = dat->maxcol; 410 } 397 411 upd = TRUE; 398 412 }